Skip to content

Commit

Permalink
minimal CI
Browse files Browse the repository at this point in the history
  • Loading branch information
abe-winter committed Jun 10, 2024
1 parent 0ae54b9 commit 8066b7c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: vet
run: go vet ./...
- name: build
run: go build ./...

0 comments on commit 8066b7c

Please sign in to comment.