-
Notifications
You must be signed in to change notification settings - Fork 1.2k
36 lines (36 loc) · 1.01 KB
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Lint
on:
push:
branches:
- master
pull_request:
types: [ opened, synchronize ]
env:
GOTOOLCHAIN: local
# When a new revision is pushed to a PR, cancel all in-progress CI runs for that
# PR. See https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
golangci-lint:
env:
GOLANGCI_LINT_VERSION: v1.60.2
strategy:
matrix:
go: ["1.22", "1.23"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/[email protected]
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
- name: golangci-lint examples
uses: golangci/[email protected]
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
working-directory: _examples