Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Splitting CI linters job #227

Merged
merged 1 commit into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions .github/workflows/linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,23 @@ jobs:
go-version: ${{ matrix.go-version }}
- name: Build project
run: go build
- name: Style linters
run: make style
- name: GO formatting
run: make fmt
- name: GO lint
run: make lint
- name: GO vet
run: make vet
- name: gocyclo
run: make cyclo
- name: shellcheck
run: make shellcheck
- name: errcheck
run: make errcheck
- name: goconst checker
run: make goconst
- name: gosec checker
run: make gosec
- name: ineffassign checker
run: make ineffassign
- name: ABC metrics checker
run: make abcgo
Loading