Skip to content

Merge pull request #338 from brite-side0/feature/issues-315-316-325-326 #252

Merge pull request #338 from brite-side0/feature/issues-315-316-325-326

Merge pull request #338 from brite-side0/feature/issues-315-316-325-326 #252

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-unknown-unknown
- name: Cache cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run tests
run: cargo test --workspace
- name: Storage key snapshot test
run: cargo test -p split storage_snapshot