We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2874bea commit 9ce5216Copy full SHA for 9ce5216
1 file changed
.github/workflows/pythonpackage.yml
@@ -8,7 +8,7 @@ jobs:
8
strategy:
9
max-parallel: 4
10
matrix:
11
- python-version: [3.10 , 3.11] #Using [3.10, 3.11] to test multiple versions
+ python-version: [3.10, 3.11] # Fixed versions
12
13
steps:
14
- uses: actions/checkout@v3
@@ -31,6 +31,6 @@ jobs:
31
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
32
33
- name: Test with pytest
34
- run: |
+ run:
35
pip install pytest
36
pytest -v
0 commit comments