Skip to content

Commit

Permalink
fix(code-coverage): Fix awk syntax error - part 10
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusSkytte committed Feb 7, 2024
1 parent 4093dd1 commit 0cfa8dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/code-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
awk '/(ERROR:|STATEMENT:)/{flag=1}/LOG:|^[A-Z]/{flag=0}flag {print $0}' $log
# Throw error if ERRORs are found
grep -qv "ERROR:" $log
grep -q "ERROR:" $log && { echo "PostgreSQL ERRORs found"; exit 1; }
code-coverage-mssql:
name: 🧪 Tests (SQL Server 2019)
Expand Down

0 comments on commit 0cfa8dc

Please sign in to comment.