diff --git a/.gitea/workflows/release-tag.yaml b/.gitea/workflows/release-tag.yaml index e1cded0..c041543 100644 --- a/.gitea/workflows/release-tag.yaml +++ b/.gitea/workflows/release-tag.yaml @@ -16,8 +16,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version-file: 'go.mod' - - name: Release binaries - uses: goreleaser/goreleaser-action@v6 + - uses: goreleaser/goreleaser-action@v6 with: distribution: goreleaser version: 'latest' diff --git a/.gitea/workflows/test-pr.yaml b/.gitea/workflows/test-pr.yaml index 96665bb..c1ab42f 100644 --- a/.gitea/workflows/test-pr.yaml +++ b/.gitea/workflows/test-pr.yaml @@ -10,14 +10,10 @@ jobs: - uses: actions/setup-go@v5 with: go-version-file: 'go.mod' - - name: tidy - run: go mod tidy - - name: lint - uses: golangci/golangci-lint-action@v3 + - run: go mod tidy + - uses: golangci/golangci-lint-action@v3 with: args: -D errcheck version: latest - - name: build - run: go build ./... - - name: test - run: go test -race -v -shuffle=on ./... \ No newline at end of file + - run: go build ./... + - run: go test -race -v -shuffle=on ./... \ No newline at end of file