Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update CI to run all the available Cairo and Cairo Zero programs #123

Merged
merged 3 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,9 @@ jobs:

- name: Run tests
run: bun install && bun test

- name: Setup Cairo VM TS CLI
run: bun link

- name: Run all Cairo Zero & Cairo programs
run: make run-all
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ run-all: $(VALID_COMPILED_CAIRO_0_FILES) $(COMPILED_CAIRO_FILES)
for file in $$failed_tests; do \
echo $$file; \
done; \
exit 1; \
else \
echo "All $$passed_tests_ctr tests passed."; \
fi
Expand Down
Loading