commit 662795889f04f7860737e1b38cc2ea0afed00b76 parent 93cfa17bd6d24aa3326ba000ed62bc5c0a9e3cd0 Author: William Casarin <jb55@jb55.com> Date: Sun, 23 Jul 2023 08:44:14 -0700 Create c-cpp.yml Diffstat:
A | .github/workflows/c-cpp.yml | | | 17 | +++++++++++++++++ |
1 file changed, 17 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/c-cpp.yml 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 check + run: make check