-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (39 loc) · 883 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
41
42
43
44
45
46
47
48
name: Go Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: gofmt
run: find . -name "*.go" | xargs gofmt -s -l -e
- name: govet
run: go list ./... | xargs go vet -composites=false
build:
runs-on: ubuntu-latest
needs: check
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Run tests
env:
SKIP_TESTS: 1
run: go test ./...
- name: Handle test failures
if: failure()
run: |
echo "Tests failed. Please check the test results."
exit 1