diff options
| author | vitalyster <vitalyster@gmail.com> | 2026-01-15 16:58:48 +0300 |
|---|---|---|
| committer | Vitaly Takmazov <vitalyster@gmail.com> | 2026-01-15 17:01:21 +0300 |
| commit | e63fb44d0a0a2e7e8e666c623666a73e98129230 (patch) | |
| tree | 813ab4d8508caefee06c9f814a6e506f6285aabb /.github/workflows/zen.yml | |
| parent | 7411d71fbde5d652f04cc8851ed93bd15513968b (diff) | |
Initial CI setup
Diffstat (limited to '.github/workflows/zen.yml')
| -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 |
