Skip to content

Commit 5ecdeea

Browse files
Actions: quote versions in workflow to avoid misinterpretation
1 parent 1668e0b commit 5ecdeea

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/run-test-suite.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ jobs:
2424
matrix:
2525
# Skip older ubuntu-16.04 & macos-10.15 to save usage resource
2626
os: [ubuntu-latest, macos-latest]
27-
python-version: [3.8, 3.9]
27+
# Note: keep versions quoted as strings else 3.10 taken as 3.1, etc.
28+
python-version: ["3.8", "3.9", "3.10", "3.11"]
2829

2930
# Run on new and old(er) versions of the distros we support (Linux, Mac OS)
3031
runs-on: ${{ matrix.os }}
@@ -146,7 +147,7 @@ jobs:
146147
# passing at least for that job, avoiding useless coverage reports.
147148
uses: codecov/codecov-action@v3
148149
if: |
149-
matrix.os == 'ubuntu-latest' && matrix.python-version == 3.8
150+
matrix.os == 'ubuntu-latest' && matrix.python-version == "3.9"
150151
with:
151152
file: |
152153
${{ github.workspace }}/main/cf/test/cf_coverage_reports/coverage.xml

0 commit comments

Comments
 (0)