Skip to content

Commit

Permalink
Merge pull request #189 from WheeskyJack/linter_github_workflow
Browse files Browse the repository at this point in the history
add golangci linter in github workflow action
  • Loading branch information
schollz committed Jun 27, 2024
2 parents 1e0fedf + 71d0f98 commit 52e95e5
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: golangci-lint

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

jobs:
golangci:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
cache: false
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59

# Optional: working directory, useful for monorepos
# working-directory: somedir

# Optional: golangci-lint command line arguments.
#
# Note: By default, the `.golangci.yml` file should be at the root of the repository.
# The location of the configuration file can be changed by using `--config=`
# args: --timeout=30m --config=/my/path/.golangci.yml --issues-exit-code=0
args: --verbose
21 changes: 21 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
run:
timeout: 5m
exclude-dirs:
- vendor
- examples

linters:
enable:
- errcheck
- gocyclo
- gofmt
- goimports
- gosimple
- govet
- ineffassign
- staticcheck
- unused

linters-settings:
gocyclo:
min-complexity: 20

0 comments on commit 52e95e5

Please sign in to comment.