Skip to content

Commit 2312152

Browse files
committed
CI: Fix YAML screwup
Stupid number formats. Signed-off-by: Stephen Finucane <stephen@that.guru>
1 parent 9bc395b commit 2312152

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python 3.10
1616
uses: actions/setup-python@v2
1717
with:
18-
python-version: 3.10
18+
python-version: '3.10'
1919
- name: Install dependencies
2020
run: python -m pip install tox
2121
- name: Run tox
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
python: [3.7, 3.8, 3.9, 3.10]
28+
python: ['3.7', '3.8', '3.9', '3.10']
2929
steps:
3030
- name: Checkout source code
3131
uses: actions/checkout@v2
@@ -49,7 +49,7 @@ jobs:
4949
- name: Set up Python 3.10
5050
uses: actions/setup-python@v2
5151
with:
52-
python-version: 3.10
52+
python-version: '3.10'
5353
- name: Install dependencies
5454
run: python -m pip install tox
5555
- name: Build docs (via tox)
@@ -73,7 +73,7 @@ jobs:
7373
- name: Set up Python 3.10
7474
uses: actions/setup-python@v2
7575
with:
76-
python-version: 3.10
76+
python-version: '3.10'
7777
- name: Install dependencies
7878
run: python -m pip install build
7979
- name: Build a binary wheel and a source tarball

0 commit comments

Comments
 (0)