Skip to content

Commit 3bcadba

Browse files
committed
Add bootstrap venv to build
Signed-off-by: Mihai Criveti <[email protected]>
1 parent 2d49974 commit 3bcadba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,15 @@ jobs:
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

32-
# 3️⃣ Install build front-end; Keep pip current
32+
# 3️⃣ Install build front-end; Keep pip current; bootstrap venv
3333
- name: Install build tool
3434
run: |
3535
python3 -m pip install --upgrade pip
3636
python3 -m pip install build # PyPA-endorsed PEP 517 builder
3737
38+
- name: Bootstrap project venv
39+
run: make venv
40+
3841
# 4️⃣ Invoke the Makefile 'dist' target (creates ./dist/*.whl & *.tar.gz)
3942
- name: Build distributions
4043
run: make dist # Uses the Makefile's `dist` rule

0 commit comments

Comments
 (0)