21 lines
468 B
YAML
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
|