diff options
author | Valery Piashchynski <[email protected]> | 2023-02-15 09:37:17 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2023-02-15 09:37:17 +0100 |
commit | 3d82f8c24a5c29e09f20871bb6f1ba15d1967d79 (patch) | |
tree | b6e01f4c5f70cc5f8de664e9f46a4a45feb1f26f /.github | |
parent | b834b53cd213aecfb3da303137c351b33b5957cb (diff) |
chore: do not stop golangci-lint step
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c5a0105a..4a0be74b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -85,7 +85,7 @@ jobs: build: name: Build for ${{ matrix.os }} runs-on: ubuntu-latest - needs: [ golangci-lint, go-test ] + needs: [ go-test ] strategy: fail-fast: false matrix: @@ -140,7 +140,7 @@ jobs: docker-image: name: Build docker image runs-on: ubuntu-latest - needs: [ golangci-lint, go-test ] + needs: [ go-test ] steps: - name: Check out code uses: actions/checkout@v3 |