File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,15 @@ jobs:
16
16
- name : Set up Go
17
17
uses : actions/setup-go@v2
18
18
with :
19
- stable : ' false'
20
- go-version : 1.18beta1
19
+ go-version : 1.17
20
+
21
+ - name : Install Go 1.18
22
+ run : |
23
+ go install golang.org/dl/go1.18beta1@latest
24
+ go1.18beta1 download
21
25
22
26
- name : Build
23
- run : go build -v ./...
27
+ run : go1.18beta1 build -v ./...
24
28
25
29
- name : Test
26
- run : go test -v ./...
30
+ run : go1.18beta1 test -v ./...
Original file line number Diff line number Diff line change 1
1
# go-tuple: Generic tuples for Go 1.18.
2
2
3
+ [ ![ Go] ( https://github.com/barweiss/go-tuple/actions/workflows/go.yml/badge.svg )] ( https://github.com/barweiss/go-tuple/actions/workflows/go.yml )
4
+
3
5
Go 1.18 tuple implementation.
4
6
5
7
Use tuples to store 1 or more values without needing to write a custom struct.
You can’t perform that action at this time.
0 commit comments