Add Debug scripts #1968
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cairo 1 programs execution | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
run: | |
name: Execute programs | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@1.80.0 | |
- name: Set up Cargo cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: install corelib | |
run: cd cairo1-run/ && make deps | |
- name: Run tests | |
run: cd cairo1-run/ && make test | |
- name: Run cairo 1 programs | |
run: cd cairo1-run/ && make run |