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 472393e commit 5f5dbb1Copy full SHA for 5f5dbb1
.github/workflows/release.yml
@@ -10,7 +10,6 @@ jobs:
10
name: "Build & Unit Tests"
11
strategy:
12
matrix:
13
- go-version: [1.18.x, 1.19.x, 1.20.x]
14
platform: [ubuntu-latest, macos-latest, windows-latest]
15
fail-fast: true
16
runs-on: ${{ matrix.platform }}
@@ -20,8 +19,7 @@ jobs:
20
19
- name: Install Go
21
uses: actions/setup-go@v4
22
with:
23
- go-version: ${{ matrix.go-version }}
24
- stable: false
+ go-version: ${{ vars.GO_VERSION }}
25
- name: Build
26
run: go build ./...
27
- name: Test
go.mod
@@ -1,6 +1,6 @@
1
module go.devnw.com/ajson
2
3
-go 1.18
+go 1.20
4
5
require (
6
github.com/davecgh/go-spew v1.1.1
0 commit comments