2020-11-23 00:50:29 +03:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-05-12 07:26:16 +03:00
|
|
|
- 2.*
|
2020-11-23 00:50:29 +03:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-05-12 07:26:16 +03:00
|
|
|
- 2.*
|
2020-11-23 00:50:29 +03:00
|
|
|
|
2022-11-06 11:01:36 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-11-23 00:50:29 +03:00
|
|
|
jobs:
|
|
|
|
# From https://github.com/golangci/golangci-lint-action
|
|
|
|
golangci:
|
2022-11-06 11:01:36 +03:00
|
|
|
permissions:
|
|
|
|
contents: read # for actions/checkout to fetch code
|
|
|
|
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
|
2020-11-23 00:50:29 +03:00
|
|
|
name: lint
|
2022-07-27 16:27:18 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2020-11-23 00:50:29 +03:00
|
|
|
steps:
|
2022-03-16 01:09:19 +03:00
|
|
|
- uses: actions/checkout@v3
|
2023-04-02 07:36:16 +03:00
|
|
|
- uses: actions/setup-go@v4
|
2022-03-16 01:09:19 +03:00
|
|
|
with:
|
2023-02-24 23:45:44 +03:00
|
|
|
go-version: '~1.19.6'
|
2022-04-13 23:03:38 +03:00
|
|
|
check-latest: true
|
2022-03-16 01:09:19 +03:00
|
|
|
|
2020-11-23 00:50:29 +03:00
|
|
|
- name: golangci-lint
|
2022-03-16 01:09:19 +03:00
|
|
|
uses: golangci/golangci-lint-action@v3
|
2020-11-23 00:50:29 +03:00
|
|
|
with:
|
2022-11-14 19:38:02 +03:00
|
|
|
version: v1.50
|
2022-08-23 23:26:19 +03:00
|
|
|
# Windows times out frequently after about 5m50s if we don't set a longer timeout.
|
|
|
|
args: --timeout 10m
|
2020-11-23 00:50:29 +03:00
|
|
|
# Optional: show only new issues if it's a pull request. The default value is `false`.
|
2022-07-29 15:46:45 +03:00
|
|
|
# only-new-issues: true
|