Skip to content

Commit

Permalink
Better CI output
Browse files Browse the repository at this point in the history
  • Loading branch information
7x11x13 committed Jul 9, 2024
1 parent a3c116d commit c09d01c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit c09d01c

Please sign in to comment.