We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aea9057 commit d122fb2Copy full SHA for d122fb2
.github/workflows/ci.yml
@@ -52,6 +52,10 @@ jobs:
52
53
- run: expect -v
54
55
+ - name: install valgrind
56
+ run: |
57
+ sudo apt install -y valgrind
58
+
59
- name: Run all tests
60
run: ROC=./roc_nightly/roc EXAMPLES_DIR=./examples/ ./ci/all_tests.sh
61
ci/all_tests.sh
@@ -38,7 +38,8 @@ for roc_file in $TESTS_DIR*.roc; do
38
$ROC check $roc_file
39
done
40
41
-$ROC ci/check_all_exposed_funs_tested.roc
+$ROC build ci/check_all_exposed_funs_tested.roc
42
+valgrind ./ci/check_all_exposed_funs_tested
43
$ROC ci/check_cargo_versions_match.roc
44
45
# roc build
0 commit comments