We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a836653 commit b01bc5eCopy full SHA for b01bc5e
1 file changed
.github/workflows/linters.yml
@@ -1,22 +1,18 @@
1
name: Linters
2
-
3
on: [push, pull_request]
4
5
jobs:
6
golangci-lint:
7
name: Golang-CI (lint)
8
runs-on: ubuntu-latest
9
steps:
10
- name: Check out code
11
uses: actions/checkout@v4
12
13
- name: Set up Go
14
uses: actions/setup-go@v5 # action page: <https://github.com/actions/setup-go>
15
with:
16
go-version: stable
17
18
- name: Run linter
19
- uses: golangci/golangci-lint-action@v8 # Action page: <https://github.com/golangci/golangci-lint-action>
+ uses: golangci/golangci-lint-action@v9 # Action page: <https://github.com/golangci/golangci-lint-action>
20
21
only-new-issues: false # show only new issues if it's a pull request
22
args: --timeout=10m --build-tags=race
0 commit comments