forked from karlmcguire/ige
-
Notifications
You must be signed in to change notification settings - Fork 3
79 lines (70 loc) · 1.84 KB
/
ci.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: ci
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
run:
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
flags: [""]
arch:
- amd64
runner:
- ubuntu-latest
- macos-latest
- windows-latest
go:
- 1.16
- 1.17
include:
- arch: 386
runner: ubuntu-latest
go: 1.17
- arch: amd64
runner: ubuntu-latest
flags: "-race"
go: 1.17
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Get Go environment
id: go-env
run: |
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/[email protected]
with:
path: |
${{ steps.go-env.outputs.cache }}
${{ steps.go-env.outputs.modcache }}
key: test-${{ runner.os }}-${{ matrix.arch }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
test-${{ runner.os }}-${{ matrix.arch }}-go-${{ matrix.go }}-
- name: Run tests
env:
GOARCH: ${{ matrix.arch }}
GOFLAGS: ${{ matrix.flags }}
run: go test --timeout 5m ./...
nancy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.17
- name: List dependencies
run: go list -json -m all > go.list
- name: Run nancy
uses: sonatype-nexus-community/[email protected]