Skip to content

Commit

Permalink
🛠️ bugfix python version, enclose version in quotations
Browse files Browse the repository at this point in the history
- due to yaml parsing, the version identifiers are quoted to avoid 3.10 to be treated as 3.1
- more information actions/runner#1989
  • Loading branch information
ZenithClown authored Aug 17, 2024
1 parent cf65a18 commit 4818ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/code-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 4818ac8

Please sign in to comment.