mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
d4c7f183eb
Co-authored-by: Renovate Bot <bot@renovateapp.com>
24 lines
459 B
YAML
24 lines
459 B
YAML
name: lint
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
golangci:
|
|
name: Go linter
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-go@v3
|
|
- uses: actions/checkout@v2
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v2
|
|
with:
|
|
only-new-issues: true
|