netbird/.github/workflows/golangci-lint.yml

48 lines
1.3 KiB
YAML
Raw Normal View History

2021-05-15 12:44:35 +02:00
name: golangci-lint
2022-02-01 11:53:24 +01:00
on: [pull_request]
permissions:
contents: read
pull-requests: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.actor_id }}
cancel-in-progress: true
2021-05-15 12:44:35 +02:00
jobs:
codespell:
name: codespell
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: codespell
uses: codespell-project/actions-codespell@v2
with:
ignore_words_list: erro,clienta
skip: go.mod,go.sum
only_warn: 1
2021-05-15 12:44:35 +02:00
golangci:
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
2021-05-15 12:44:35 +02:00
name: lint
runs-on: ${{ matrix.os }}
timeout-minutes: 15
2021-05-15 12:44:35 +02:00
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.21.x"
cache: false
- name: Install dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt update && sudo apt install -y -q libgtk-3-dev libayatana-appindicator3-dev libgl1-mesa-dev xorg-dev
2021-05-15 12:44:35 +02:00
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout=12m