We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d49974 commit 3bcadbaCopy full SHA for 3bcadba
.github/workflows/python-package.yml
@@ -29,12 +29,15 @@ jobs:
29
with:
30
python-version: ${{ matrix.python-version }}
31
32
- # 3️⃣ Install build front-end; Keep pip current
+ # 3️⃣ Install build front-end; Keep pip current; bootstrap venv
33
- name: Install build tool
34
run: |
35
python3 -m pip install --upgrade pip
36
python3 -m pip install build # PyPA-endorsed PEP 517 builder
37
38
+ - name: Bootstrap project venv
39
+ run: make venv
40
+
41
# 4️⃣ Invoke the Makefile 'dist' target (creates ./dist/*.whl & *.tar.gz)
42
- name: Build distributions
43
run: make dist # Uses the Makefile's `dist` rule
0 commit comments