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 0759dae commit 4b9e9f0Copy full SHA for 4b9e9f0
.github/workflows/build.yml
@@ -12,7 +12,7 @@ jobs:
12
runs-on: ubuntu-20.04
13
strategy:
14
matrix:
15
- go: [ 1.17 ]
+ go: [ 1.17, 1.18 ]
16
steps:
17
- uses: actions/checkout@v2
18
@@ -35,7 +35,7 @@ jobs:
35
- name: Set up Go
36
uses: actions/setup-go@v2
37
with:
38
- go-version: 1.17
+ go-version: 1.18
39
40
- name: Test
41
run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...
go.mod
@@ -1,6 +1,6 @@
1
module github.com/elgopher/mapify
2
3
-go 1.17
+go 1.18
4
5
require github.com/stretchr/testify v1.7.0
6
0 commit comments