Skip to content

Commit

Permalink
Add Github Actions workflow for golangci-lint
Browse files Browse the repository at this point in the history
Signed-off-by: rustyclock <rustyclock@protonmail.com>
  • Loading branch information
rustycl0ck committed Nov 16, 2021
1 parent e98636a commit 908df7a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: golangci-lint
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2

0 comments on commit 908df7a

Please # to comment.