Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 0 additions & 79 deletions .github/workflows/_checks.yml

This file was deleted.

10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,12 @@ concurrency:

jobs:
checks:
uses: ./.github/workflows/_checks.yml
uses: modern-python/.github/.github/workflows/checks.yml@shared-checks
secrets: inherit
with:
service-image: postgres:latest
service-port: 5432:5432
service-options: --health-cmd pg_isready -e POSTGRES_PASSWORD=password
test-env: DB_DSN=postgresql+asyncpg://postgres:password@127.0.0.1/postgres
# SQLAlchemy's cyext does not declare free-thread safety (fixed upstream for 2.1): use the pure-Python fallback on the t build.
free-threaded-env: DISABLE_SQLALCHEMY_CEXT_RUNTIME=1
10 changes: 9 additions & 1 deletion .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,15 @@ concurrency:

jobs:
checks:
uses: ./.github/workflows/_checks.yml
uses: modern-python/.github/.github/workflows/checks.yml@shared-checks
secrets: inherit
with:
service-image: postgres:latest
service-port: 5432:5432
service-options: --health-cmd pg_isready -e POSTGRES_PASSWORD=password
test-env: DB_DSN=postgresql+asyncpg://postgres:password@127.0.0.1/postgres
# SQLAlchemy's cyext does not declare free-thread safety (fixed upstream for 2.1): use the pure-Python fallback on the t build.
free-threaded-env: DISABLE_SQLALCHEMY_CEXT_RUNTIME=1

report-failure:
needs: checks
Expand Down
Loading