Skip to content

Commit

Permalink
added a github action for building the go package
Browse files Browse the repository at this point in the history
  • Loading branch information
terminaldweller committed May 13, 2024
1 parent 314af5e commit 7069f28
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/go_build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: alpine-3.19
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: go build -v ./...

0 comments on commit 7069f28

Please sign in to comment.