-
Notifications
You must be signed in to change notification settings - Fork 3
41 lines (37 loc) · 870 Bytes
/
Copy pathci.yml
File metadata and controls
41 lines (37 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: mlugg/setup-zig@v2
with:
version: 0.15.1
- run: |
zig build test
zig build -Dtarget=x86-windows-gnu test
test-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: mlugg/setup-zig@v2
with:
version: 0.15.1
# Note that there's no testing for 32-bit on macos since offical support has been dropped
- run: |
zig build test
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: mlugg/setup-zig@v2
with:
version: 0.15.1
- run: |
zig build test
zig build -Dtarget=x86-linux-gnu test