0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-20 20:43:45 +02:00

Run CI with Python 3.10 and Postgres 14 (#10992)

This commit is contained in:
David Robertson 2021-10-05 12:43:04 +01:00 committed by GitHub
parent 7036a7a60a
commit 6f6e956338
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 7 deletions

View file

@ -76,11 +76,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
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"]
include:
# Newest Python without optional deps
- python-version: "3.9"
- python-version: "3.10"
toxenv: "py-noextras,combine"
# Oldest Python with PostgreSQL
@ -88,10 +88,10 @@ jobs:
database: "postgres"
postgres-version: "9.6"
# Newest Python with PostgreSQL
- python-version: "3.9"
# Newest Python with newest PostgreSQL
- python-version: "3.10"
database: "postgres"
postgres-version: "13"
postgres-version: "14"
steps:
- uses: actions/checkout@v2
@ -256,8 +256,8 @@ jobs:
- python-version: "3.6"
postgres-version: "9.6"
- python-version: "3.9"
postgres-version: "13"
- python-version: "3.10"
postgres-version: "14"
services:
postgres:

1
changelog.d/10992.misc Normal file
View file

@ -0,0 +1 @@
Update GHA config to run tests against Python 3.10 and PostgreSQL 14.