diff options
author | Danny van Kooten <dannyvankooten@users.noreply.github.com> | 2020-12-04 09:53:18 +0100 |
---|---|---|
committer | Danny van Kooten <dannyvankooten@users.noreply.github.com> | 2020-12-04 09:53:18 +0100 |
commit | 29f2bca03e29bf1f1616b5b9033a1fe510d0d4fe (patch) | |
tree | a3843fcad2d11d4700982d6896a5ae038b2cea98 | |
parent | 0501ee7b850936db0e518dc734e62db13cd07006 (diff) | |
parent | addf11a5121f07bd0ff8300f4dd6a636709f0dd0 (diff) | |
download | unja-29f2bca03e29bf1f1616b5b9033a1fe510d0d4fe.tar.gz unja-29f2bca03e29bf1f1616b5b9033a1fe510d0d4fe.zip |
Merge branch 'master' of github.com:dannyvankooten/unja
-rw-r--r-- | .github/workflows/c.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml new file mode 100644 index 0000000..21f3f72 --- /dev/null +++ b/.github/workflows/c.yml @@ -0,0 +1,17 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: make check + run: make check |