Skip to content

Commit 58b85f1

Browse files
committed
Trying to fix Python version for automated tests
1 parent baec7c3 commit 58b85f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/code-coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Python
1313
uses: actions/setup-python@main
1414
with:
15-
python-version: 3.10
15+
python-version: '3.10'
1616
- name: Generate coverage report
1717
run: |
1818
git config --global user.email "[email protected]"

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest, macos-latest, windows-latest]
19-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
19+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
2020

2121
steps:
2222
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)