Skip to content

Commit

Permalink
fix: add golangci-lint workflow (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
jta authored Nov 3, 2023
1 parent e8e0360 commit 56a7c53
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: golangci-lint
on:
push:
branches:
- main
pull_request:
jobs:
golangci-lint:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
run: |
make go-lint-all

0 comments on commit 56a7c53

Please sign in to comment.