Skip to content

Commit

Permalink
🐛 test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xxxvik-xakerxxx committed Nov 1, 2023
1 parent 1b0f579 commit 292da71
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/packages.yaml
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

0 comments on commit 292da71

Please sign in to comment.