We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a241038 commit 70408a1Copy full SHA for 70408a1
.github/workflows/test.yml
@@ -13,7 +13,7 @@ jobs:
13
strategy:
14
matrix:
15
# Minimum supported version (1.17) and the latest two
16
- go-version: [1.17, 1.18, 1.19]
+ go-version: ['1.17', '1.19', '1.20']
17
platform: [ubuntu-latest, macos-latest, windows-latest]
18
runs-on: ${{ matrix.platform }}
19
@@ -27,7 +27,7 @@ jobs:
27
uses: actions/checkout@v3
28
29
- name: Check formatting
30
- if: matrix.go-version == '1.19' && matrix.platform == 'ubuntu-latest'
+ if: matrix.go-version == '1.20' && matrix.platform == 'ubuntu-latest'
31
run: diff -u <(echo -n) <(go fmt $(go list ./...))
32
33
- name: Run unit tests
0 commit comments