-
Notifications
You must be signed in to change notification settings - Fork 18
39 lines (34 loc) · 1.11 KB
/
go-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
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: stable
check-latest: true
- name: Install deps
shell: bash --noprofile --norc -x -eo pipefail {0}
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Lint
shell: bash --noprofile --norc -x -eo pipefail {0}
run: |
go build
if [ "$(go fmt ./... | wc -l)" -gt 0 ]; then
echo "gofmt failed; to fix, run: 'go fmt ./...'"
exit 1
fi
go vet ./...
$HOME/go/bin/staticcheck ./...
- name: Run tests
shell: bash --noprofile --norc -x -eo pipefail {0}
run: |
# go test -vet=off -v -run=TestNoRace --failfast -p=1 ./...
# coverage via cov.sh disabled while just testing the waters
# Also disable race since we are overwhelming the GHA runners.
go test -vet=off -v -p=1 --failfast ./...