From ee84bfe17112929901710c612f721d47e16a773c Mon Sep 17 00:00:00 2001 From: collin <16715212+collinc97@users.noreply.github.com> Date: Mon, 8 Aug 2022 16:04:03 -0700 Subject: [PATCH] run interest examples in circle ci --- .circleci/test-examples.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.circleci/test-examples.sh b/.circleci/test-examples.sh index 7364e58676..01580022b8 100755 --- a/.circleci/test-examples.sh +++ b/.circleci/test-examples.sh @@ -28,6 +28,17 @@ $LEO run main ) +# Build and run the interest example Leo programs. +( + cd ./project/examples/import_point || exit + + # Run the fixed period interest program. + $LEO run fixed_period_interest + + # Run the bounded period interest program. + $LEO run bounded_period_interest +) + # Build and run the message example Leo program. ( cd ./project/examples/message || exit