diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3494477..08b29e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,17 +26,20 @@ jobs: run: | pip install -e .[dev] - name: Lint - run: ruff check + if: '!cancelled()' + run: ruff check --output-format=github - name: Format check + if: '!cancelled()' run: ruff format --check - name: Type check + if: '!cancelled()' run: mypy - name: Test env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} AUTH_TOKEN: ${{ secrets.AUTH_TOKEN }} run: | - pytest --exitfirst + pytest -vv --exitfirst publish: needs: test if: startsWith(github.ref, 'refs/tags/v')