File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,15 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
env :
14
14
GOROOT : /usr/local/go
15
+ GOVERSION : go1.18.linux-amd64
15
16
steps :
16
17
- uses : actions/checkout@v2
17
18
18
19
- name : Set up Go
19
20
run : |
20
- curl -OL https://go.dev/dl/go1.18beta2.linux-amd64 .tar.gz
21
+ curl -OL https://go.dev/dl/$GOVERSION .tar.gz
21
22
sudo rm -rf $GOROOT
22
- sudo tar -C /usr/local -xzf go1.18beta2.linux-amd64 .tar.gz
23
+ sudo tar -C /usr/local -xzf $GOVERSION .tar.gz
23
24
24
25
- name : Build
25
26
run : $GOROOT/bin/go build -v ./...
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ Functional constructs (lent from other languages) for Go lang 1.18
12
12
- [ Result] ( #result )
13
13
- [ API] ( #result-api )
14
14
- [ Examples] ( #result-examples )
15
+ - [ array] ( #array )
16
+ - [ API] ( #array-api )
17
+ - [ Iterator] ( #iterator )
18
+ - [ API] ( #iterator-api )
15
19
16
20
# Option
17
21
You can’t perform that action at this time.
0 commit comments