We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 984571c commit d531276Copy full SHA for d531276
1 file changed
.github/workflows/test.yml
@@ -6,12 +6,18 @@ on:
6
pull_request:
7
branches: [main]
8
9
+env:
10
+ ZIG_VERSION: 0.15.2
11
+
12
jobs:
13
test:
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v4
17
- uses: oven-sh/setup-bun@v2
18
+ - uses: goto-bus-stop/setup-zig@v2
19
+ with:
20
+ version: ${{ env.ZIG_VERSION }}
21
- run: bun install
22
- run: bun test
23
- run: ./examples/run-all.sh
0 commit comments