-
Notifications
You must be signed in to change notification settings - Fork 5
47 lines (39 loc) · 1.01 KB
/
test-game-codegen.yml
File metadata and controls
47 lines (39 loc) · 1.01 KB
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
42
43
44
45
46
47
name: Test Game Codegen
on:
push:
branches: [ main, dev ]
paths:
- 'internal/gen/**'
- 'internal/elaborate/**'
- 'internal/parser/**'
- 'cmd/ailang/compile.go'
- 'examples/sim_stub/**'
- '.github/workflows/test-game-codegen.yml'
pull_request:
branches: [ main, dev ]
paths:
- 'internal/gen/**'
- 'internal/elaborate/**'
- 'internal/parser/**'
- 'cmd/ailang/compile.go'
- 'examples/sim_stub/**'
- '.github/workflows/test-game-codegen.yml'
permissions:
contents: read
jobs:
test-game-codegen:
name: Test AILANG -> Go Codegen Pipeline
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.25.10'
- name: Build AILANG compiler
run: make build
- name: Install AILANG
run: make install
- name: Run sim_stub codegen test
run: make test-sim-stub