diff --git a/.github/workflows/linter.yaml b/.github/workflows/linter.yaml index f13e12b..d9e8132 100644 --- a/.github/workflows/linter.yaml +++ b/.github/workflows/linter.yaml @@ -38,7 +38,12 @@ jobs: PYVER: ${{ steps.detect.outputs.pyver }} - name: Check ruff linting - run: .venv/bin/ruff check --target-version "$PYVER" vault_oidc_ssh_cert_action.py + run: .venv/bin/ruff check --target-version "$PYVER" --exit-zero --select ALL vault_oidc_ssh_cert_action.py + env: + PYVER: ${{ steps.detect.outputs.pyver }} + + - name: Check ruff linting any version + run: .venv/bin/ruff check --exit-zero --select ALL vault_oidc_ssh_cert_action.py env: PYVER: ${{ steps.detect.outputs.pyver }}