diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-07-10 23:23:51 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 23:23:51 -0300 |
commit | f1ad05bb486ec49f576580cda8e6c9a9a8b92317 (patch) | |
tree | 096117b0003b0e53d8ef653ba6d3363e4e9f9e7f /.github/workflows/c-cpp.yml | |
parent | 45e4e70ec50bc0d743dadc415e0c4a0695ce63fa (diff) | |
download | jet-f1ad05bb486ec49f576580cda8e6c9a9a8b92317.tar.gz jet-f1ad05bb486ec49f576580cda8e6c9a9a8b92317.zip |
Create c-cpp.yml
Diffstat (limited to '.github/workflows/c-cpp.yml')
-rw-r--r-- | .github/workflows/c-cpp.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..23aa0bf --- /dev/null +++ b/.github/workflows/c-cpp.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 + run: make |