owncast/.github/workflows/go-lint.yml

41 lines
783 B
YAML
Raw Normal View History

name: lint
on:
push:
paths-ignore:
- 'webroot/**'
- 'web/**'
2022-09-21 20:22:44 +03:00
pull_request:
paths-ignore:
- 'webroot/**'
- 'web/**'
2022-03-07 11:20:47 +03:00
permissions:
contents: read
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]' }}
runs-on: ubuntu-latest
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
2022-04-10 14:54:39 +03:00
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
2022-12-07 01:31:08 +03:00
with:
go-version: '1.18.8'
2022-04-10 14:54:39 +03:00
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
only-new-issues: true
args: --timeout=3m