From fab9e447fab3ed68860d05c611475c5daad7f361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rasmus=20Skytte=20Randl=C3=B8v?= Date: Wed, 7 Feb 2024 09:07:37 +0100 Subject: [PATCH] feat(code-coverage): Detect ERRORs in Postgres logs --- .github/workflows/code-coverage.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/code-coverage.yaml b/.github/workflows/code-coverage.yaml index a74c4d49..6e1f9dc0 100644 --- a/.github/workflows/code-coverage.yaml +++ b/.github/workflows/code-coverage.yaml @@ -191,6 +191,9 @@ jobs: cat $logs + # Throw errors on ERRORs + grep -qv "ERROR" $logs || { echo "PostgreSQL backend threw ERRORs"; exit 1; } + code-coverage-mssql: name: 🧪 Tests (SQL Server 2019) runs-on: ubuntu-latest