mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 16:03:51 +01:00
Run CI with Python 3.10 and Postgres 14 (#10992)
This commit is contained in:
parent
7036a7a60a
commit
6f6e956338
2 changed files with 8 additions and 7 deletions
14
.github/workflows/tests.yml
vendored
14
.github/workflows/tests.yml
vendored
|
@ -76,11 +76,11 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.6", "3.7", "3.8", "3.9"]
|
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
|
||||||
database: ["sqlite"]
|
database: ["sqlite"]
|
||||||
include:
|
include:
|
||||||
# Newest Python without optional deps
|
# Newest Python without optional deps
|
||||||
- python-version: "3.9"
|
- python-version: "3.10"
|
||||||
toxenv: "py-noextras,combine"
|
toxenv: "py-noextras,combine"
|
||||||
|
|
||||||
# Oldest Python with PostgreSQL
|
# Oldest Python with PostgreSQL
|
||||||
|
@ -88,10 +88,10 @@ jobs:
|
||||||
database: "postgres"
|
database: "postgres"
|
||||||
postgres-version: "9.6"
|
postgres-version: "9.6"
|
||||||
|
|
||||||
# Newest Python with PostgreSQL
|
# Newest Python with newest PostgreSQL
|
||||||
- python-version: "3.9"
|
- python-version: "3.10"
|
||||||
database: "postgres"
|
database: "postgres"
|
||||||
postgres-version: "13"
|
postgres-version: "14"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -256,8 +256,8 @@ jobs:
|
||||||
- python-version: "3.6"
|
- python-version: "3.6"
|
||||||
postgres-version: "9.6"
|
postgres-version: "9.6"
|
||||||
|
|
||||||
- python-version: "3.9"
|
- python-version: "3.10"
|
||||||
postgres-version: "13"
|
postgres-version: "14"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
|
|
1
changelog.d/10992.misc
Normal file
1
changelog.d/10992.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Update GHA config to run tests against Python 3.10 and PostgreSQL 14.
|
Loading…
Reference in a new issue