-
-
Notifications
You must be signed in to change notification settings - Fork 12
39 lines (36 loc) · 868 Bytes
/
zig.yml
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
name: Zig Test
on:
workflow_dispatch:
push:
paths:
- zig/**
env:
VERSION: 0.13.0
jobs:
zig_test:
container:
image: barichello/godot-ci:4.3
strategy:
matrix:
os: [ubuntu-latest] #, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: goto-bus-stop/setup-zig@v2
with:
version: ${{env.VERSION}}
- name: Generate Godot Project
run: godot -e --path ../godot --import --headless
- name: Generate Zig Bindings
run: zig build bind
- name: Test
working-directory: ./zig
run: zig build test
- name: Lint
working-directory: ./zig
run: zig fmt --check .
- name: Build
working-directory: ./zig
run: zig build