feat: add protocol support for list decoding regime #230
Workflow file for this run
This file contains hidden or 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: CPU Tests | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["**"] | |
| paths: | |
| - "crates/stark-backend/**" | |
| - ".github/workflows/tests-cpu.yml" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| tests: | |
| name: stark-backend crate tests | |
| runs-on: | |
| - runs-on=${{ github.run_id }}/runner=16cpu-linux-arm64 | |
| steps: | |
| - uses: runs-on/action@v2 | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| env: | |
| RUSTUP_PERMIT_COPY_RENAME: "1" | |
| - uses: Swatinem/rust-cache@v2 | |
| - uses: taiki-e/install-action@nextest | |
| - name: Run stark-backend tests | |
| working-directory: crates/stark-backend | |
| run: | | |
| cargo nextest run | |
| - name: Run stark-sdk tests | |
| working-directory: crates/stark-sdk | |
| run: | | |
| cargo nextest run |