-
Notifications
You must be signed in to change notification settings - Fork 0
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
1b0f579
commit 292da71
Showing
1 changed file
with
39 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Go | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
- 'master' | ||
- 'chains/mainnet' | ||
- 'chains/mainnet-beta' | ||
# on: | ||
# push: | ||
# tags: | ||
# - 'v[0-9]+.[0-9]+.[0-9]+' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.21.x' | ||
- name: Install dependencies | ||
run: | ||
go env -w GOPRIVATE=github.com/* | ||
go env -w GONOSUMDB=github.com/* | ||
go env -w GONOPROXY=github.com/* | ||
go mod tidy | ||
go mod vendor | ||
- name: Build | ||
run: | ||
go env -w GOPRIVATE=github.com/* | ||
go env -w GONOSUMDB=github.com/* | ||
go env -w GONOPROXY=github.com/* | ||
export CGO_ENABLED=1 | ||
export GO111MODULE=off | ||
export GOOS=linux | ||
go build |