diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/zen.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/zen.yml b/.github/workflows/zen.yml new file mode 100644 index 0000000..c292613 --- /dev/null +++ b/.github/workflows/zen.yml @@ -0,0 +1,19 @@ +name: Zen-C CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: make + run: make + - name: make test + run: make test |
