We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2193a6 commit 0f1980fCopy full SHA for 0f1980f
1 file changed
.github/workflows/my_tests.yml
@@ -25,7 +25,7 @@ jobs:
25
chmod +x integration/run_integration_test.sh
26
chmod +x clang_tidy/run_clang_tidy.sh
27
chmod +x asan/runa_asan_test.sh
28
- chmod +x valgrind/run_valgrind.sh
+ chmod +x valgrind/run_valgrind_test.sh
29
chmod +x afl/run_afl++_test.sh
30
31
# Unit test
@@ -53,10 +53,13 @@ jobs:
53
./runa_asan_test.sh
54
55
# Valgrind Memcheck testovi
56
+ - name: Install Valgrind
57
+ run: sudo apt-get update && sudo apt-get install -y valgrind
58
+
59
- name: Run Valgrind Memcheck
- run: |
- cd valgrind
- ./run_valgrind.sh
60
+ run: |
61
+ cd valgrind
62
+ ./run_valgrind_test.sh
63
64
# AFL++ fuzzing
65
- name: Run AFL++
0 commit comments