Skip to content

Commit

Permalink
updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ohdearquant committed Dec 14, 2024
1 parent e3c14fd commit 4e58614
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ jobs:
if: steps.cached-uv-dependencies.outputs.cache-hit != 'true'
run: |
uv venv
uv pip install -e ".[dev]"
uv build
- name: Run tests
run: |
source .venv/bin/activate
pytest --asyncio-mode=auto --maxfail=1 --disable-warnings tests/
uv run pytest --asyncio-mode=auto --maxfail=1 --disable-warnings tests/
- name: Check code style and compatibility
run: |
source .venv/bin/activate
black --check .
isort --check-only .
uv run black --check .
uv run isort --check-only .
publish:
needs: test
Expand Down

0 comments on commit 4e58614

Please sign in to comment.