commit d52e4b288fe54c6b056d51b0e42768f95d6563d0 parent 30a44402454eca17beb8339a8b661cc8683be5b3 Author: Rolf Eike Beer <eike@sf-mail.de> Date: Sun, 17 May 2020 19:27:41 +0200 add GitHub actions test build Diffstat:
A | .github/workflows/ccpp.yml | | | 24 | ++++++++++++++++++++++++ |
1 file changed, 24 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml @@ -0,0 +1,24 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + name: build​ + runs-on: ubuntu-latest + + steps: + - name: checkout + uses: actions/checkout@v2 + - name: test_deps + run: sudo apt-get install check + - name: configure + run: echo "cc -O2 -Wall -Wshadow" > conf-cc + - name: make + run: make it man + - name: make check + run: make test