Skip to content

Commit

Permalink
More handling
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek committed Mar 31, 2024
1 parent e134a77 commit 00240b4
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 @@ -215,18 +215,22 @@ jobs:
run: |
uv venv
uv pip install -e .[dev]
# Double-check plain Pip works too.
pip3 --python .venv/bin/python install -e .[dev]
- name: Try to import on Linux
run: >
source .venv/bin/activate
# Double-check plain Pip works too.
python -Im pip install -e .[dev]
python -Ic 'import stamina; print(stamina.__version__)'
if: runner.os == 'Linux'

- name: Try to import on Windows
run: >
.venv\Scripts\activate
# Double-check plain Pip works too.
python -Im pip install -e .[dev]
python -Ic 'import stamina; print(stamina.__version__)'
if: runner.os == 'Windows'

Expand Down

0 comments on commit 00240b4

Please sign in to comment.