Support for other languages. #10
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: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
compile_and_verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Scarb | |
uses: software-mansion/setup-scarb@v1 | |
- 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 | |
typos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: crate-ci/typos@master |