-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (49 loc) · 1.1 KB
/
test-api.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Test Go API
on:
push:
paths:
- "*.go"
- "**/*.go"
- "go.mod"
- "go.sum"
branches:
- main
- dev
pull_request:
paths:
- "*.go"
- "**/*.go"
- "go.mod"
- "go.sum"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
include:
- os: windows-latest
script_name: .\scripts\build-capi.bat
- os: ubuntu-latest
script_name: ./scripts/build-capi.sh
name: Test ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install go
uses: actions/setup-go@v4
with:
go-version: '1.21.0'
- name: Generate C-API
run: ${{ matrix.script_name }}
- name: Test altv
run: go test
working-directory: .
- name: Test altv/event
run: go test
working-directory: ./event
- name: Test altv/mvalue
run: go test
working-directory: ./mvalue