Skip to content

Commit

Permalink
fixed?
Browse files Browse the repository at this point in the history
  • Loading branch information
bomzheg committed Jul 29, 2024
1 parent 974158e commit 7f8da6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
cache: "pip"
cache-dependency-path: pyproject.toml
- name: black (ruff format)
run: uv venv && ruff format --check .
run: source .venv/bin/activate && ruff format --check .
- name: ruff
run: uv venv && ruff check .
run: source .venv/bin/activate && ruff check .
- name: mypy
run: uv venv && mypy .
run: source .venv/bin/activate && mypy .
test:
needs: build
runs-on: ubuntu-latest
Expand All @@ -56,4 +56,4 @@ jobs:
cache: "pip"
cache-dependency-path: pyproject.toml
- name: Test with pytest
run: uv venv && pytest
run: source .venv/bin/activate && pytest

0 comments on commit 7f8da6a

Please sign in to comment.