Skip to content

Commit

Permalink
Add go workflow to lint src/bpm/
Browse files Browse the repository at this point in the history
  • Loading branch information
aramprice authored Feb 29, 2024
1 parent d384f52 commit df6df7f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: go
on:
push:
pull_request:
jobs:
lint:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: src/bpm/go.mod
- uses: golangci/golangci-lint-action@v3
with:
working-directory: src/bpm/

0 comments on commit df6df7f

Please sign in to comment.