...
1name: Test and Lint
2on:
3 push:
4 branches:
5 - main
6 pull_request:
7 branches:
8 - main
9
10jobs:
11 test:
12 name: Test
13 strategy:
14 matrix:
15 platform:
16 - ubuntu-latest
17 - macos-latest
18 - windows-latest
19 runs-on: ${{ matrix.platform }}
20 steps:
21 - uses: actions/checkout@v3
22 - uses: actions/setup-go@v3
23 with:
24 go-version: 1.19
25 - name: Run Tests
26 run: go test -v ./...
27
28 lint:
29 name: Lint
30 runs-on: ubuntu-latest
31 steps:
32 - uses: actions/checkout@v3
33 - uses: actions/setup-go@v3
34 with:
35 go-version: 1.19
36 - name: Run golangci-lint
37 uses: golangci/golangci-lint-action@v3
38 with:
39 version: v1.52.0
40 args: --enable=gofumpt,goimports,whitespace,gocritic,exportloopref,unconvert,prealloc
View as plain text