From f66c3b6f86b0da9c10d3dec211ae8cf22f1ea412 Mon Sep 17 00:00:00 2001 From: Meta Date: Sat, 26 Mar 2022 16:39:50 +0800 Subject: [PATCH] =?UTF-8?q?[Bilud]=20=E6=AD=A3=E5=B8=B8=E7=BC=96=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/linter.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml deleted file mode 100644 index a81cfc1ce..000000000 --- a/.github/workflows/linter.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Linter -on: [push, pull_request] -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Get latest go version - id: version - run: | - echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g') - - - name: Setup Go - uses: actions/setup-go@v2 - with: - go-version: ${{ steps.version.outputs.go_version }} - - - name: golangci-lint - uses: golangci/golangci-lint-action@v3 - with: - version: latest