Skip to content

Commit

Permalink
Adding GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanrolds committed Jan 29, 2023
1 parent bc1c68f commit bded71b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: build
on:
push:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19
- uses: actions/checkout@v3
- run: go get -v -t -d ./...
- run: make lint
- run: make test
- run: make build

0 comments on commit bded71b

Please sign in to comment.