From 5677abc6722368b5f1fd0a8b5d40700d283ef9a1 Mon Sep 17 00:00:00 2001 From: randytqwjp Date: Wed, 23 Oct 2024 19:00:49 +0900 Subject: [PATCH] remove lint-fix --- .github/workflows/test.yaml | 2 -- Makefile | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8178835..3fd5634 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -37,7 +37,5 @@ jobs: run: make build - name: Test run: make test - - name: Lint-fix - run: make lint-fix - name: Lint run: make lint diff --git a/Makefile b/Makefile index bc188f2..461646e 100644 --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ lint: .PHONY: lint-fix lint-fix: golangci-lint ## Run golangci-lint linter and perform fixes find . -name "*.go" | xargs gci write --section Standard --section Default --section "Prefix(github.com/mercari/tortoise)" --section blank --section dot - @make lint args='--fix -v' cons_args='-v' + @make lint args='--fix -v --timeout=10m' cons_args='-v' ##@ Build