| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- name: Lint
- on:
- push:
- branches:
- - oldstable
- - stable
- - testing
- - unstable
- paths-ignore:
- - '**.md'
- - '.github/**'
- - '!.github/workflows/lint.yml'
- pull_request:
- branches:
- - oldstable
- - stable
- - testing
- - unstable
- jobs:
- build:
- name: Build
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- with:
- fetch-depth: 0
- - name: Setup Go
- uses: actions/setup-go@v5
- with:
- go-version: ~1.24.10
- - name: golangci-lint
- uses: golangci/golangci-lint-action@v8
- with:
- version: latest
- args: --timeout=30m
- install-mode: binary
- verify: false
|