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