commit 267439feeda2764433adf5447148eb2bd5eeadb9 parent 1e787e49f28da361e41988e4418d5ae649fc1514 Author: William Casarin <jb55@jb55.com> Date: Wed, 4 Sep 2019 13:24:16 -0700 add github workflow Should be interesting... Diffstat:
A | .github/workflows/ccpp.yml | | | 19 | +++++++++++++++++++ |
1 file changed, 19 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.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