Skip to content

Commit

Permalink
chore: Add golnagci GHA pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
yarlson committed Sep 24, 2023
1 parent cb8c0bf commit e277ac8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: golangci-lint
on:
push:
branches:
- main
pull_request:

jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54

0 comments on commit e277ac8

Please sign in to comment.