Files
snake/.gitea/workflows/test.yaml
Tim Wundenberg ead4757116
Some checks failed
build / test-and-build (push) Failing after 8s
test / test (push) Failing after 1m22s
feat: CI
2025-07-25 12:53:43 +02:00

21 lines
468 B
YAML

name: test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Zig
run: |
# See https://ziglang.org/download/
curl -L https://ziglang.org/builds/zig-x86_64-linux-0.15.0-dev.1184+c41ac8f19.tar.xz | tar -xJ
echo "${PWD}/zig-x86_64-linux-0.15.0-dev.1184+c41ac8f19" >> $GITHUB_PATH
- name: Run tests
run: zig build test