diff --git a/ci/all_tests.sh b/ci/all_tests.sh index bba9e57..d286d45 100755 --- a/ci/all_tests.sh +++ b/ci/all_tests.sh @@ -6,11 +6,16 @@ set -euxo pipefail roc='./roc_nightly/roc' package_dir='./package/' +example_dir='./examples/' # roc check for roc_file in $package_dir*.roc; do $roc check $roc_file done +for roc_file in $example_dir*.roc; do + $roc check $roc_file +done + $roc test ./package/Tests.roc $roc test ./package/main.roc \ No newline at end of file