-
-
Notifications
You must be signed in to change notification settings - Fork 10
44 lines (35 loc) · 966 Bytes
/
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
name: Tests
on: [push, pull_request]
jobs:
test:
name: Test and lint
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
env:
API_KEY: ${{ secrets.API_KEY }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.17
# Caching go modules to speed up the run
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run go fmt
if: runner.os != 'Windows'
run: diff -u <(echo -n) <(gofmt -d -s .)
- name: Run go vet
run: make vet
- name: Run staticcheck
run: make staticcheck
- name: Run Unit tests.
run: make test
- name: Run golint
run: make lint