Skip to content

Commit 38840cd

Browse files
committed
ADD: Python 3.14; CHANGE: Linted yaml
1 parent 7da50e6 commit 38840cd

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/tests.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches: ['main']
66
pull_request:
77

88
jobs:
@@ -13,9 +13,9 @@ jobs:
1313
PIP_DISABLE_PIP_VERSION_CHECK: 1
1414
strategy:
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1717
include:
18-
- python-version: "3.12"
18+
- python-version: '3.12'
1919
mariadb: 1
2020
steps:
2121
- if: ${{ matrix.mariadb }}
@@ -41,8 +41,8 @@ jobs:
4141
uses: actions/setup-python@v5
4242
with:
4343
python-version: ${{ matrix.python-version }}
44-
cache: "pip"
45-
cache-dependency-path: "requirements.txt"
44+
cache: 'pip'
45+
cache-dependency-path: 'requirements.txt'
4646
allow-prereleases: true
4747

4848
- name: Install mysqlclient
@@ -52,7 +52,7 @@ jobs:
5252
- name: Install test dependencies
5353
run: |
5454
pip install -r requirements.txt
55-
55+
5656
- name: Run tests
5757
env:
5858
TESTDB: actions.cnf
@@ -62,13 +62,13 @@ jobs:
6262
- uses: codecov/codecov-action@v5
6363

6464
django-test:
65-
name: "Run Django LTS test suite"
65+
name: 'Run Django LTS test suite'
6666
needs: test
6767
runs-on: ubuntu-latest
6868
env:
6969
PIP_NO_PYTHON_VERSION_WARNING: 1
7070
PIP_DISABLE_PIP_VERSION_CHECK: 1
71-
DJANGO_VERSION: "4.2.16"
71+
DJANGO_VERSION: '4.2.16'
7272
steps:
7373
- name: Start MySQL
7474
run: |
@@ -83,9 +83,9 @@ jobs:
8383
- name: Set up Python
8484
uses: actions/setup-python@v5
8585
with:
86-
python-version: "3.12"
87-
cache: "pip"
88-
cache-dependency-path: "ci/django-requirements.txt"
86+
python-version: '3.14'
87+
cache: 'pip'
88+
cache-dependency-path: 'ci/django-requirements.txt'
8989

9090
- name: Install mysqlclient
9191
run: |

0 commit comments

Comments
 (0)