diff options
| author | Danny van Kooten <dannyvankooten@users.noreply.github.com> | 2020-12-03 11:01:44 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-03 11:01:44 +0100 | 
| commit | addf11a5121f07bd0ff8300f4dd6a636709f0dd0 (patch) | |
| tree | c568beea2e774ceaa19015ee05bc741cd6ed6943 /.github/workflows | |
| parent | 0ff26657d59715ac875fb7949a58a08039b5739e (diff) | |
| download | unja-addf11a5121f07bd0ff8300f4dd6a636709f0dd0.tar.gz unja-addf11a5121f07bd0ff8300f4dd6a636709f0dd0.zip | |
Create c.yml
Diffstat (limited to '.github/workflows')
| -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 | 
