Spaces:
Running
Running
Update PR workflow to cover multiple Python version
Browse files
.github/workflows/pr-workflow.yml
CHANGED
|
@@ -9,7 +9,7 @@ jobs:
|
|
| 9 |
runs-on: ubuntu-latest
|
| 10 |
strategy:
|
| 11 |
matrix:
|
| 12 |
-
python-version: ["3.10"]
|
| 13 |
|
| 14 |
steps:
|
| 15 |
- uses: actions/checkout@v4
|
|
@@ -33,7 +33,7 @@ jobs:
|
|
| 33 |
uses: actions/upload-artifact@v4
|
| 34 |
if: always()
|
| 35 |
with:
|
| 36 |
-
name: pytest-results
|
| 37 |
path: |
|
| 38 |
htmlcov
|
| 39 |
coverage.xml
|
|
|
|
| 9 |
runs-on: ubuntu-latest
|
| 10 |
strategy:
|
| 11 |
matrix:
|
| 12 |
+
python-version: ["3.10", "3.11", "3.12"]
|
| 13 |
|
| 14 |
steps:
|
| 15 |
- uses: actions/checkout@v4
|
|
|
|
| 33 |
uses: actions/upload-artifact@v4
|
| 34 |
if: always()
|
| 35 |
with:
|
| 36 |
+
name: pytest-results-py${{ matrix.python-version }}
|
| 37 |
path: |
|
| 38 |
htmlcov
|
| 39 |
coverage.xml
|