Skip to content

Commit

Permalink
ci.yaml: Quote Python versions
Browse files Browse the repository at this point in the history
This prevents trailing zeroes from being removed by making the values strings not numbers.
  • Loading branch information
robwoolley authored Mar 29, 2024
1 parent 2a01791 commit 6cd327e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04]
python: [3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
os: ["ubuntu-18.04", "ubuntu-20.04", "ubuntu-22.04"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
name: superflore tests
runs-on: ${{matrix.os}}
steps:
Expand Down

0 comments on commit 6cd327e

Please sign in to comment.