diff --git a/.github/workflows/c-test.yml b/.github/workflows/c-test.yml new file mode 100644 index 0000000..613b39e --- /dev/null +++ b/.github/workflows/c-test.yml @@ -0,0 +1,25 @@ +name: C/C++ CI + +on: + pull_request: + workflow_dispatch: + push: + branches-ignore: + - '.**' + - 'wip' + - 'wip-**' + - '**.wip-**' + + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: install criterion + run: sudo apt install libcriterion-dev + - name: make + run: make + - name: test + run: make test