-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (37 loc) · 935 Bytes
/
test.yaml
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: test-and-lint
on:
push:
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Test
run: go test -v ./... -coverprofile="coverage.out"
- uses: codecov/codecov-action@v2
with:
files: coverage.out
flags: unittests # optional
name: go-cache
fail_ci_if_error: true # optional (default = false)
verbose: false # optional (default = false)
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: run static check
run: staticcheck ./...