We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 064fbec commit 8c9fc06Copy full SHA for 8c9fc06
1 file changed
.github/workflows/tests.yml
@@ -17,7 +17,11 @@ jobs:
17
- name: Install dependencies
18
run: |
19
python3 --version
20
+ python3 -m venv $HOME/venv
21
+ source $HOME/venv/bin/activate
22
python3 -m pip install --upgrade pip
- pip3 install --break-system-packages tox
23
+ pip3 install tox
24
- name: Test with tox
- run: tox -e py,style
25
+ run: |
26
27
+ tox -e py,style
0 commit comments