Skip to content

Commit 289cf0d

Browse files
committed
Using Go 1.18 Release
1 parent 7108430 commit 289cf0d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/go.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ jobs:
1212
runs-on: ubuntu-latest
1313
env:
1414
GOROOT: /usr/local/go
15+
GOVERSION: go1.18.linux-amd64
1516
steps:
1617
- uses: actions/checkout@v2
1718

1819
- name: Set up Go
1920
run: |
20-
curl -OL https://go.dev/dl/go1.18beta2.linux-amd64.tar.gz
21+
curl -OL https://go.dev/dl/$GOVERSION.tar.gz
2122
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
2324
2425
- name: Build
2526
run: $GOROOT/bin/go build -v ./...

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ Functional constructs (lent from other languages) for Go lang 1.18
1212
- [Result](#result)
1313
- [API](#result-api)
1414
- [Examples](#result-examples)
15+
- [array](#array)
16+
- [API](#array-api)
17+
- [Iterator](#iterator)
18+
- [API](#iterator-api)
1519

1620
# Option
1721

0 commit comments

Comments
 (0)