We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae334ab commit 9722480Copy full SHA for 9722480
.github/workflows/build.yml
@@ -24,6 +24,15 @@ jobs:
24
- run: g++ -std=c++17 -Wall -Wextra -Werror -o test/pqxx test/pqxx_test.cpp -lpqxx -lpq
25
- run: test/pqxx
26
27
+ - if: ${{ startsWith(matrix.os, 'ubuntu') }}
28
+ run: |
29
+ sudo apt-get update
30
+ sudo apt-get install valgrind
31
+ valgrind --leak-check=yes test/pqxx
32
+
33
+ - if: ${{ startsWith(matrix.os, 'macos') }}
34
+ run: /opt/homebrew/opt/llvm@18/bin/scan-build --status-bugs g++ -std=c++17 -o test/pqxx test/pqxx_test.cpp -lpqxx -lpq
35
36
# test install
37
- run: cmake -S . -B build
38
- run: cmake --build build
0 commit comments