We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 533dad8 commit 0f85f82Copy full SHA for 0f85f82
.github/workflows/build-and-test.yml
@@ -151,8 +151,11 @@ jobs:
151
- name: Test Python package
152
run: |
153
cd lakers-python
154
+ python3 -m venv .venv
155
+ source .venv/bin/activate
156
pip install --upgrade pip
- pip install -U pip maturin pytest
157
+ pip install -U maturin pytest
158
+ pip freeze
159
maturin develop && pytest
160
161
.github/workflows/python-wheels.yml
@@ -4,7 +4,6 @@ on:
4
push:
5
branches: [main]
6
tags: 'v*'
7
- pull_request:
8
workflow_dispatch:
9
10
jobs:
0 commit comments