2021-04-10 19:25:15 -07:00
|
|
|
name: lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
2022-03-07 00:20:47 -08:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-04-10 19:25:15 -07:00
|
|
|
jobs:
|
|
|
|
golangci:
|
2022-03-07 00:20:47 -08:00
|
|
|
name: Go linter
|
2021-05-18 10:12:52 -07:00
|
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
2021-04-10 19:25:15 -07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-04-10 11:54:39 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-10 19:25:15 -07:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2022-04-04 13:52:54 -07:00
|
|
|
- uses: actions/setup-go@v3
|
2022-04-10 11:54:39 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-10 19:25:15 -07:00
|
|
|
- name: golangci-lint
|
2022-05-02 09:29:48 -07:00
|
|
|
uses: golangci/golangci-lint-action@v3
|
2021-04-10 19:25:15 -07:00
|
|
|
with:
|
|
|
|
only-new-issues: true
|
2022-05-11 20:39:23 -07:00
|
|
|
args: --timeout=3m
|