Skip to content

Commit

Permalink
ci: setup venv first
Browse files Browse the repository at this point in the history
  • Loading branch information
cgevans committed Sep 3, 2024
1 parent bcdf67b commit 10e1bae
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,13 @@ jobs:
source venv/bin/activate
uv pip install -U pip setuptools wheel
- name: Install mypy
run: uv pip install --upgrade mypy
run: |
source venv/bin/activate
uv pip install --upgrade mypy
- name: Run mypy
run: mypy --cache-dir .mypy_cache/ --install-types --ignore-missing-imports --non-interactive --show-traceback py-rgrow/rgrow/
run: |
source venv/bin/activate
mypy --cache-dir .mypy_cache/ --install-types --ignore-missing-imports --non-interactive --show-traceback py-rgrow/rgrow/
- name: Run Ruff on Python code
uses: chartboost/ruff-action@v1
with:
Expand Down

0 comments on commit 10e1bae

Please sign in to comment.