mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
200ddfaaff
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...2541b1294d2704b0964813337f33b291d3f8596b) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
name: golangci-lint
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- patch-*
|
|
paths:
|
|
- '**.go'
|
|
pull_request:
|
|
paths:
|
|
- '**.go'
|
|
workflow_dispatch: # Manual
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
golangci:
|
|
permissions:
|
|
contents: read # for actions/checkout to fetch code
|
|
pull-requests: read # for actions/checkout to fetch pull requests
|
|
name: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v2
|
|
|
|
- uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a
|
|
with:
|
|
go-version: '1.17'
|
|
|
|
- name: Run go lint
|
|
run: |
|
|
# The following packages are needed to build Fleet Desktop on Ubuntu.
|
|
sudo apt install -y gcc libgtk-3-dev libayatana-appindicator3-dev
|
|
# Don't forget to update
|
|
# docs/Contributing/Testing-and-local-development.md when this
|
|
# version changes
|
|
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.47.3
|
|
make lint-go
|