Skip to content

Commit

Permalink
feat: Adds the golang-ci lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ committed Jul 25, 2024
1 parent a95c9df commit 6e9fc55
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: golangci-lint
on:
push:
branches:
- main
pull_request:

permissions:
contents: read

jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59

0 comments on commit 6e9fc55

Please sign in to comment.