Skip to content

Commit

Permalink
Fix missing quote in the CI test config
Browse files Browse the repository at this point in the history
  • Loading branch information
Aiky30 committed Sep 19, 2024
1 parent 036e99c commit 8dd0cbf
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,21 @@ 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']
requirements-file: [
dj32_cms40.txt,
dj42_cms40.txt,
dj42_cms41.txt,
]

exclude:
# CMS 4.0 does not support python 3.11+
- requirements-file: "dj32_cms40.txt"
python-version: ["3.11", "3.12"]
- requirements-file: "dj42_cms40.txt"
python-version: ["3.11", "3.12"]
# 3.8 is not required by django-cms 4.1+
- requirements-file: "dj42_cms41.txt"
python-version: ["3.8"]

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

0 comments on commit 8dd0cbf

Please sign in to comment.