diff options
author | Shav Kinderlehrer <[email protected]> | 2023-04-20 13:35:55 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2023-04-20 13:35:55 -0400 |
commit | 07c1fe51fb7b1edf6c011e7ec8efeae499a6a2eb (patch) | |
tree | 047fae7b4363c0c838d7a19673627ac5f68b65e2 | |
parent | 6096052962b5258294aedd6af3a10b0d8d707d56 (diff) | |
download | lat-07c1fe51fb7b1edf6c011e7ec8efeae499a6a2eb.tar.gz lat-07c1fe51fb7b1edf6c011e7ec8efeae499a6a2eb.zip |
Create c-cpp.yml
-rw-r--r-- | .github/workflows/c-cpp.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..19c64f4 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,21 @@ +name: Build + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: prep + run: make prep + - name: make + run: make + - name: test + run: ./build/lat -V |