Custom data structures #215
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: Verify Cairo programs compilation | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
compile_and_verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Scarb | |
uses: software-mansion/setup-scarb@v1 | |
with: | |
scarb-version: "2.3.0-rc1" | |
- name: Setup Rust cache | |
uses: ./.github/workflows/setup-rust-cache | |
- name: Install cairo-verify | |
run: cargo install --path cairo-verify --locked | |
shell: bash | |
- name: Run cairo-verify and generate summary | |
run: cairo-verify >> $GITHUB_STEP_SUMMARY | |
shell: bash |