-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (35 loc) · 957 Bytes
/
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
on: [ push, pull_request ]
name: Continuous Integration
jobs:
test:
strategy:
matrix:
go-version: [ 1.20.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install
run: |
go mod download
- name: Packr
run: |
go install github.com/gobuffalo/packr/packr@latest
packr clean
packr -z -i fallback
- name: Test
run: |
mkdir -p var
go test -v -race -covermode atomic "-coverprofile=var/profile.cov" ./...