mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
e61cb7e0db
Add a relatively minimal set of linters that raise safe and mostly un-opinionated issues with the code. It runs automatically on CI via a github action.
21 lines
495 B
YAML
21 lines
495 B
YAML
name: golangci-lint
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
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 3m
|