Skip to content

Commit 6884a19

Browse files
committed
Use strings for python-version
1 parent b234ebd commit 6884a19

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-python@v2
1616
with:
17-
python-version: 3.8
17+
python-version: '3.8'
1818
- name: Install dependencies
1919
run: python -m pip install tox
2020
- name: Run linting
@@ -23,7 +23,7 @@ jobs:
2323
test:
2424
strategy:
2525
matrix:
26-
python: [3.6, 3.7, 3.8, 3.9, 3.10]
26+
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
2727
platform: [ubuntu-latest, macos-latest, windows-latest]
2828
runs-on: ${{ matrix.platform }}
2929
steps:
@@ -51,7 +51,7 @@ jobs:
5151
- uses: actions/setup-python@v2
5252
with:
5353
# Mininum supported Python version
54-
python-version: 3.6
54+
python-version: '3.6'
5555
- name: Install dependencies
5656
run: python -m pip install tox
5757
- name: Build docs
@@ -65,7 +65,7 @@ jobs:
6565
- uses: actions/checkout@v2
6666
- uses: actions/setup-python@v2
6767
with:
68-
python-version: 3.8
68+
python-version: '3.8'
6969
- name: Install dependencies
7070
run: python -m pip install tox
7171
- name: Release

0 commit comments

Comments
 (0)