diff options
author | Pjotr Prins | 2021-08-26 09:23:39 +0200 |
---|---|---|
committer | GitHub | 2021-08-26 09:23:39 +0200 |
commit | 16b56dabecd28c5868c4d6331768ee3f78a8657e (patch) | |
tree | 6b7ad9cd296aa80279f511f0aa41979ff7f3a662 /.github | |
parent | f49db1ebe2cb42ff8eaf2049a0570aff25bc64a9 (diff) | |
download | pangemma-16b56dabecd28c5868c4d6331768ee3f78a8657e.tar.gz |
test.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/c-cpp.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..e323326 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck |