ci: name the Postgres job distinctly so it is not a required check

The MariaDB job is named 'Python Unit Tests', and 'Python Unit Tests (1..4)' are the
required status checks on develop. Naming the Postgres matrix job the same made its
checks report under those required contexts, effectively gating every (labelled) PR on
Postgres. Rename it to 'Postgres Unit Tests' so its contexts are distinct and the
workflow stays non-required until we deliberately add it to branch protection.
This commit is contained in:
Mihir Kandoi
2026-06-21 12:35:04 +05:30
parent 57d0cebfb8
commit c820591089

View File

@@ -57,7 +57,9 @@ jobs:
matrix:
container: [1, 2, 3, 4]
name: Python Unit Tests
# Distinct from the MariaDB job's "Python Unit Tests" so its check contexts do NOT collide with
# the required "Python Unit Tests (1..4)" status checks -- this keeps Postgres non-required for now.
name: Postgres Unit Tests
services:
postgres: