Skip to content

Commit

Permalink
ci(lint): create golangci-lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMarble authored Jan 24, 2022
1 parent a035d17 commit 69de49b
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 69de49b

Please sign in to comment.