From a7a3724319fd8a566429c56bedead3a732b3dd69 Mon Sep 17 00:00:00 2001 From: Aleksandr Tolstikhin Date: Thu, 5 Dec 2024 01:17:59 +0700 Subject: [PATCH] Fix pr.yml --- .gitea/workflows/pr.yml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index 323f5e8..79d6a66 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -17,22 +17,17 @@ jobs: uses: actions/checkout@v3 - name: deps run: go get -v -t -d ./... + - name: lint + uses: golangci/golangci-lint-action@v3.4.0 + continue-on-error: true + with: + # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. + version: v1.30 - name: test env: INTEGRATION_TESTS: yes run: go test -mod readonly -v ./... - lint: - name: lint - runs-on: ubuntu-latest - steps: - - name: checkout - uses: actions/checkout@v3 - - name: lint - uses: golangci/golangci-lint-action@v3.4.0 - continue-on-error: true - with: - # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.30 + # Optional: working directory, useful for monorepos # working-directory: somedir # Optional: golangci-lint command line arguments.