Skip to content

Commit

Permalink
add: github workflow go build for badge
Browse files Browse the repository at this point in the history
  • Loading branch information
sincerefly committed Jan 17, 2024
1 parent cc6c071 commit 330c4c7
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build
on: [push, pull_request]
permissions:
contents: read

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.20'
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Check the build
shell: bash -l {0}
run: |
export PATH=${PATH}:`go env GOPATH`/bin
make build

0 comments on commit 330c4c7

Please sign in to comment.