-
-
Notifications
You must be signed in to change notification settings - Fork 654
45 lines (39 loc) · 1.02 KB
/
stub-tests.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
name: Stub tests
on:
workflow_dispatch:
push:
branches:
- main
- master
pull_request:
jobs:
test:
name: Go ${{ matrix.go-version }} - ${{ matrix.os }}/${{ matrix.test-arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
go-version: [1.20.x]
os: [ubuntu-latest, windows-latest, macOS-latest]
test-arch: [amd64]
race: ["-race"]
include:
- go-version: 1.20.x
test-arch: "386"
os: ubuntu-latest
race: ""
- go-version: 1.20.x
test-arch: "386"
os: windows-latest
race: ""
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753
with:
go-version: ${{ matrix.go-version }}
- name: Run tests on stubs
shell: bash
env:
GOARCH: ${{ matrix.test-arch }}
run: |
./bin/run-tests test-stubs