Skip to content

Commit d122fb2

Browse files
committed
investigate check_all_exposed_funs_tested
1 parent aea9057 commit d122fb2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ jobs:
5252

5353
- run: expect -v
5454

55+
- name: install valgrind
56+
run: |
57+
sudo apt install -y valgrind
58+
5559
- name: Run all tests
5660
run: ROC=./roc_nightly/roc EXAMPLES_DIR=./examples/ ./ci/all_tests.sh
5761

ci/all_tests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ for roc_file in $TESTS_DIR*.roc; do
3838
$ROC check $roc_file
3939
done
4040

41-
$ROC ci/check_all_exposed_funs_tested.roc
41+
$ROC build ci/check_all_exposed_funs_tested.roc
42+
valgrind ./ci/check_all_exposed_funs_tested
4243
$ROC ci/check_cargo_versions_match.roc
4344

4445
# roc build

0 commit comments

Comments
 (0)