From 00fff16a2a28faf52437ca78d4dec505d74f4d07 Mon Sep 17 00:00:00 2001 From: jnasbyupgrade Date: Tue, 28 Jul 2026 18:10:13 -0500 Subject: [PATCH] ci: run full test-all suite instead of test make test only runs the standard suite; make test-all also runs the extra tests (test/extra/), giving CI full coverage. --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 04c101f..5b717e5 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -157,4 +157,4 @@ jobs: # bypasses auto-detection and prevents it from choosing the wrong # branch or failing on the detached HEAD state. PGXNBRANCH: ${{ inputs.pgxntool-branch }} - run: make test + run: make test-all