We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baadd09 commit 66c185fCopy full SHA for 66c185f
.github/workflows/master.yml
@@ -6,10 +6,27 @@ jobs:
6
runs-on: ubuntu-latest
7
steps:
8
- uses: actions/checkout@v2
9
- - name: Build
10
- run: go build ./...
+ - name: Run golangci-lint
+ uses: golangci/golangci-lint-action@v6
11
+ test:
12
+ strategy:
13
+ matrix:
14
+ goarch: [ amd64, 386 ]
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v2
18
- name: Run Tests
19
run: go test ./...
- - name: Run golangci-lint
- uses: golangci/golangci-lint-action@v2.5.2
-
20
+ env:
21
+ GOARCH: ${{ matrix.goarch }}
22
+ build:
23
24
25
+ goarch: [ amd64, 386, arm64, arm ]
26
27
28
29
+ - name: Build
30
+ run: go build ./...
31
32
0 commit comments