-
-
Notifications
You must be signed in to change notification settings - Fork 19
78 lines (65 loc) · 1.56 KB
/
testing.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
name: Testing
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: "5 1 * * *"
jobs:
gofmt:
name: go fmt (Go ${{ matrix.go }})
runs-on: ubuntu-22.04
strategy:
matrix:
go: [ '1.20', '1.19' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run go fmt
if: runner.os != 'Windows'
run: diff -u <(echo -n) <(gofmt -d -s .)
govet:
name: go vet (Go ${{ matrix.go }})
runs-on: ubuntu-22.04
strategy:
matrix:
go: [ '1.20', '1.19' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run go vet
run: make vet
staticcheck:
name: staticcheck (Go ${{ matrix.go }})
runs-on: ubuntu-22.04
strategy:
matrix:
go: [ '1.20', '1.19' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run staticcheck
uses: dominikh/staticcheck-action@v1.3.1
with:
version: "2023.1.3"
install-go: false
cache-key: ${{ matrix.go }}
unittesting:
name: unit testing (Go ${{ matrix.go }})
runs-on: ubuntu-22.04
strategy:
matrix:
go: [ '1.20', '1.19' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run Unit tests.
run: make test