Skip to content

Commit

Permalink
CI: quote Python version numbers to avoid accidentally testing Python…
Browse files Browse the repository at this point in the history
… 3.1...
  • Loading branch information
alanbriolat committed Feb 14, 2022
1 parent 81c1749 commit db4d1b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10]
python-version: ["3.7", "3.8", "3.9", "3.10"]
include:
- python-version: 3.7
- python-version: "3.7"
toxenv: py37
- python-version: 3.8
- python-version: "3.8"
toxenv: py38
- python-version: 3.9
- python-version: "3.9"
toxenv: py39
- python-version: 3.10
- python-version: "3.10"
toxenv: py310-flake8
env:
PYTHON: ${{ matrix.python-version }}
Expand Down

0 comments on commit db4d1b5

Please sign in to comment.