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 ae4bb46 commit e7c00a7Copy full SHA for e7c00a7
.github/workflows/test.yaml
@@ -5,25 +5,25 @@ jobs:
5
test:
6
strategy:
7
matrix:
8
- go: [ 1.18, 1.19 ]
+ go: [ "1.19", "1.20" ]
9
10
env:
11
GOPATH: /home/runner/work/terraform-provider-jetstream
12
13
runs-on: ubuntu-latest
14
steps:
15
- name: Checkout code
16
- uses: actions/checkout@v1
+ uses: actions/checkout@v3
17
18
- name: Setup Go
19
- uses: actions/setup-go@v1
+ uses: actions/setup-go@v4
20
with:
21
go-version: ${{matrix.go}}
22
23
- name: Lint
24
shell: bash
25
run: |
26
- go install honnef.co/go/tools/cmd/staticcheck@2022.1
+ go install honnef.co/go/tools/cmd/staticcheck@latest
27
go install github.com/client9/misspell/cmd/misspell@latest
28
29
PATH=$PATH:$GOPATH/bin
0 commit comments