diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-16 03:26:39 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-16 03:26:39 -0500 |
commit | 9258e15e058d0eb06d363a03c99dd09b715ad250 (patch) | |
tree | a3acd4077d48f16d676d958accfd3a081c29a7d1 | |
parent | 20ae6ae3f82a4eeeb123d9c1f895f10c8967f44b (diff) | |
parent | 46a2f064686e9c4dfbf47e13141cd2f50fa016f3 (diff) |
-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 |