From b4ace353040dd703dec2c135d329257171d32ea6 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 25 May 2020 14:43:25 -0700 Subject: [PATCH] Create ccpp.yml --- .github/workflows/ccpp.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ccpp.yml diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 00000000..15772993 --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,23 @@ +name: C CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: prepare-source + run: ./prepare-source + - name: configure + run: ./configure --with-included-popt --with-protected-args --with-included-zlib --enable-simd + - name: make + run: make + - name: make check + run: make check -- 2.47.3