build(deps-dev): bump ruff from 0.8.6 to 0.9.0 #1358
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
postgresql_17: | |
uses: ./.github/workflows/single-postgres.yml | |
with: | |
postgresql: 17 | |
postgresql_16: | |
needs: [postgresql_17] | |
uses: ./.github/workflows/single-postgres.yml | |
with: | |
postgresql: 16 | |
python-versions: '["3.10", "3.11", "3.12", "3.13"]' | |
postgresql_15: | |
needs: [postgresql_16] | |
uses: ./.github/workflows/single-postgres.yml | |
with: | |
postgresql: 15 | |
python-versions: '["3.11", "3.12", "3.13"]' | |
postgresql_14: | |
needs: [postgresql_15] | |
uses: ./.github/workflows/single-postgres.yml | |
with: | |
postgresql: 14 | |
python-versions: '["3.13"]' | |
postgresql_13: | |
needs: [postgresql_14] | |
uses: ./.github/workflows/single-postgres.yml | |
with: | |
postgresql: 13 | |
python-versions: '["3.13"]' | |
macos_postgres_17: | |
needs: [postgresql_17] | |
uses: ./.github/workflows/single-postgres.yml | |
with: | |
postgresql: 17 | |
os: macos-latest | |
python-versions: '["3.11", "3.12", "3.13"]' | |
macos_postgres_16: | |
needs: [postgresql_16, macos_postgres_17] | |
uses: ./.github/workflows/single-postgres.yml | |
with: | |
postgresql: 16 | |
os: macos-latest | |
python-versions: '["3.11", "3.12", "3.13"]' | |
macos_postgres_15: | |
needs: [postgresql_15, macos_postgres_16] | |
uses: ./.github/workflows/single-postgres.yml | |
with: | |
postgresql: 15 | |
os: macos-latest | |
python-versions: '["3.12", "3.13"]' | |
docker_postgresql_17: | |
needs: [postgresql_17] | |
uses: ./.github/workflows/dockerised-postgres.yml | |
with: | |
postgresql: 17 | |
docker_postgresql_16: | |
needs: [postgresql_16, docker_postgresql_17] | |
uses: ./.github/workflows/dockerised-postgres.yml | |
with: | |
postgresql: 16 | |
python-versions: '["3.10", "3.11", "3.12", "3.13"]' | |
docker_postgresql_15: | |
needs: [postgresql_15, docker_postgresql_17] | |
uses: ./.github/workflows/dockerised-postgres.yml | |
with: | |
postgresql: 15 | |
python-versions: '["3.11", "3.12", "3.13"]' | |
docker_postgresql_14: | |
needs: [postgresql_14, docker_postgresql_15] | |
uses: ./.github/workflows/dockerised-postgres.yml | |
with: | |
postgresql: 14 | |
python-versions: '["3.12", "3.13"]' | |
docker_postgresql_13: | |
needs: [postgresql_13, docker_postgresql_14] | |
uses: ./.github/workflows/dockerised-postgres.yml | |
with: | |
postgresql: 13 | |
python-versions: '["3.13"]' |