Skip to content

Commit

Permalink
chore(ci): add golangci-lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
mavogel committed May 26, 2021
1 parent 24efe01 commit 6942a5b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: golangci
on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.40.1

0 comments on commit 6942a5b

Please sign in to comment.