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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 with: fetch-depth: 0 - name: Setup Go uses: actions/setup-go@v7 with: go-version: ^1.25 - name: golangci-lint uses: golangci/golangci-lint-action@v9 with: version: latest args: --timeout=30m install-mode: binary verify: false