Only lint if is isnt me
Some checks failed
Test and build / Test & lint (push) Successful in 1m8s
Test and build / Build (push) Failing after 1m6s

This commit is contained in:
2026-02-23 16:56:53 +01:00
parent cafb1b1ac5
commit 85f1ddd264

View File

@@ -7,6 +7,7 @@ permissions:
jobs: jobs:
test: test:
name: Test & lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
@@ -16,11 +17,14 @@ jobs:
with: with:
go-version-file: 'go.mod' go-version-file: 'go.mod'
check-latest: false check-latest: false
- name: Test
run: go test -v ./...
- name: Lint - name: Lint
uses: golangci/golangci-lint-action@v9 uses: golangci/golangci-lint-action@v9
with: with:
go-version: ${{ matrix.go }} go-version: ${{ matrix.go }}
version: v2.6 version: v2.6
if: ${{ github.actor != 'maze' }}
build: build:
name: Build name: Build