Skip to content

Commit

Permalink
Install missing virtualenv in GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pemistahl committed Aug 20, 2023
1 parent a227ccd commit 8c8e8b3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ on:

jobs:
rust-build:
name: ${{ matrix.name }}
name: Rust on ${{ matrix.name }}

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
uses: codecov/codecov-action@v3

python-build:
name: ${{ matrix.name }}
name: Python ${{ matrix.python-version }} on ${{ matrix.name }}

runs-on: ${{ matrix.os }}

Expand All @@ -171,6 +171,9 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
run: |
python -m venv .venv
source .venv/bin/activate
- name: Build Python extension and install pytest
uses: PyO3/maturin-action@v1
Expand Down

0 comments on commit 8c8e8b3

Please sign in to comment.