Skip to content

Commit

Permalink
Merge pull request #179 from davrodpin/add-lint-to-ci
Browse files Browse the repository at this point in the history
Add linter to CI
  • Loading branch information
davrodpin authored Oct 6, 2021
2 parents 302a946 + d316136 commit ff55983
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: golangci-lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.42.1
args: --tests=false
only-new-issues: true

0 comments on commit ff55983

Please sign in to comment.