mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
850d36543d
Reduce the total amount of Actions running by only running actions relevant to the changes.
26 lines
566 B
YAML
26 lines
566 B
YAML
name: golangci-lint
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- patch-*
|
|
paths:
|
|
- '**.go'
|
|
pull_request:
|
|
paths:
|
|
- '**.go'
|
|
jobs:
|
|
golangci:
|
|
name: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v2
|
|
with:
|
|
# Required: the version of golangci-lint is required and must be
|
|
# specified without patch version: we always use the latest patch
|
|
# version.
|
|
version: v1.42
|
|
args: --timeout 10m
|