Skip to content

Commit

Permalink
ci(test.yaml): re-ordering steps when installing and testing
Browse files Browse the repository at this point in the history
  • Loading branch information
timurcarstensen committed Nov 25, 2024
1 parent 5f4f36b commit 5a9c75a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:
- name: create venv
run: uv venv --python ${{ matrix.python-version }}
- name: Activate venv
run: source .venv/bin/activate
run: |
source .venv/bin/activate
echo "Python version: $(python --version)"
echo "which python: $(which python)"
- name: Install
run: uv pip install ".[dev]"
- name: Run tests
Expand Down

0 comments on commit 5a9c75a

Please sign in to comment.