-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc56e13
commit 573fe6e
Showing
1 changed file
with
31 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,14 +60,14 @@ jobs: | |
GOARCH: arm64 | ||
GOOS: darwin | ||
steps: | ||
- | ||
id: go | ||
name: "Set up Go 1.20" | ||
uses: actions/[email protected] | ||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.20 | ||
- | ||
name: "Check out code into the Go module directory" | ||
go-version: '1.20' | ||
check-latest: true | ||
id: go | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
- | ||
name: "Get dependencies" | ||
|
@@ -102,17 +102,17 @@ jobs: | |
GOARCH: "386" | ||
GOOS: linux | ||
steps: | ||
- | ||
id: go | ||
name: "Set up Go 1.20" | ||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.20 | ||
- | ||
name: "Check out code into the Go module directory" | ||
go-version: '1.20' | ||
check-latest: true | ||
id: go | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
- | ||
name: "Get dependencies" | ||
|
||
- name: "Get dependencies" | ||
id: dependencies | ||
run: | | ||
go get -v -t -d ./... | ||
|
@@ -144,17 +144,17 @@ jobs: | |
GOARCH: amd64 | ||
GOOS: linux | ||
steps: | ||
- | ||
id: go | ||
name: "Set up Go" | ||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.20 | ||
- | ||
name: "Check out code into the Go module directory" | ||
go-version: '1.20' | ||
check-latest: true | ||
id: go | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
- | ||
name: "Get dependencies" | ||
|
||
- name: "Get dependencies" | ||
id: dependencies | ||
run: | | ||
go get -v -t -d ./... | ||
|
@@ -191,17 +191,17 @@ jobs: | |
GOARCH: amd64 | ||
GOOS: windows | ||
steps: | ||
- | ||
id: go | ||
name: "Set up Go 1.20" | ||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.20 | ||
- | ||
name: "Check out code into the Go module directory" | ||
go-version: '1.20' | ||
check-latest: true | ||
id: go | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
- | ||
name: "Get dependencies" | ||
- name: "Get dependencies" | ||
id: dependencies | ||
run: | | ||
go get -v -t -d ./... | ||
|