From 85f1ddd26422f175f44dc492b427a64d7e3566f0 Mon Sep 17 00:00:00 2001 From: maze Date: Mon, 23 Feb 2026 16:56:53 +0100 Subject: [PATCH] Only lint if is isnt me --- .gitea/workflows/build.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index abea1e6..d4ba157 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -7,6 +7,7 @@ permissions: jobs: test: + name: Test & lint runs-on: ubuntu-latest steps: - name: Checkout @@ -16,11 +17,14 @@ jobs: with: go-version-file: 'go.mod' check-latest: false + - name: Test + run: go test -v ./... - name: Lint uses: golangci/golangci-lint-action@v9 with: go-version: ${{ matrix.go }} version: v2.6 + if: ${{ github.actor != 'maze' }} build: name: Build