diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-15 15:36:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-15 15:36:17 -0500 |
commit | 46a2f064686e9c4dfbf47e13141cd2f50fa016f3 (patch) | |
tree | 3d5496edeab05f5b087f878b7222fb60a2172216 | |
parent | 267868847b0885f60aaae43afd4f54ce028181d8 (diff) |
Create 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..6218604 --- /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@v3 + - name: make + run: make |