-
Notifications
You must be signed in to change notification settings - Fork 58
40 lines (32 loc) · 963 Bytes
/
go.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
name: Go
on: [push, pull_request]
jobs:
build:
name: Build/Test
runs-on: ${{ matrix.os }}
timeout-minutes: 3
strategy:
matrix:
go-version: ['1.17.x', '1.21.x']
os: [ubuntu-latest, windows-latest]
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... --timeout 60s
- name: Meta Tests
run: go test -v -tags ci ./ci --timeout 60s
if: ${{ runner.os == 'Linux' }}
- name: Cross test for i386
run: env GOOS=linux GOARCH=386 go test -v ./... --timeout 60s
if: ${{ runner.os == 'Linux' }}
- name: Cross compile for arm (RPI)
run: env GOOS=linux GOARCH=arm GOARM=5 go build -v ./...
if: ${{ runner.os == 'Linux' }}