commit f54e702ae0d7c2f22c632926e5e6bc162252f791 parent 9354097fa8faf95da3677003bad0599a67166b4c Author: finwo <finwo@pm.me> Date: Sun, 10 Nov 2019 21:49:54 +0100 Create cc.yml Diffstat:
| A | .github/workflows/cc.yml | | | 19 | +++++++++++++++++++ |
1 file changed, 19 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/cc.yml b/.github/workflows/cc.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck