From 5c4627f065b7cfec76e8ecc43dffbbbc0b976b14 Mon Sep 17 00:00:00 2001 From: Naka Masato Date: Wed, 24 Apr 2024 07:19:25 +0900 Subject: [PATCH] Delete .github/workflows/golangci-lint.yml --- .github/workflows/golangci-lint.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/golangci-lint.yml diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml deleted file mode 100644 index 218a5265..00000000 --- a/.github/workflows/golangci-lint.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: golangci-lint -on: - pull_request: - paths: - - '**.go' - -jobs: - golangci: - name: lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 - - - name: setup go - uses: actions/setup-go@v5 - with: - go-version-file: go.mod - - - name: golangci-lint - uses: golangci/golangci-lint-action@v4 - with: - # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version - version: latest - - # Optional: working directory, useful for monorepos - # working-directory: somedir - - # Optional: golangci-lint command line arguments. - args: --timeout=3m # --issues-exit-code=0