Skip to content

Update substrate

Update substrate #72

Workflow file for this run

name: Rust
on:
push:
branches: [master, dev]
pull_request:
env:
CARGO_TERM_COLOR: always
SKIP_WASM_BUILD: 1
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- name: Cache Cargo dependencies
uses: actions/cache@v4
with:
path: ~/.cargo
key: rust-deps-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
rust-deps-${{ runner.os }}-
- name: Build project
run: cargo build --manifest-path node/Cargo.toml --all-targets --all-features
continue-on-error: true
- name: Run integration tests
run: cargo test --manifest-path node/Cargo.toml -p pallet-perun --all-features