Add slashing lifecycle to the runtime (no slashing) #1972
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: check | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- 'README.md' | |
workflow_dispatch: | |
jobs: | |
rustfmt: | |
concurrency: | |
group: rustfmt-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install latest stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt | |
- name: Rustfmt check | |
run: cargo fmt --all -- --check | |
test: | |
env: | |
CARGO_TERM_COLOR: always | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/free-disk-space | |
- name: Install toolchain | |
id: toolchain | |
uses: actions-rs/toolchain@master | |
with: | |
profile: minimal | |
toolchain: stable | |
target: wasm32-unknown-unknown | |
- name: Install cargo-nextest | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: nextest | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: Install Protobuf | |
run: sudo apt-get install protobuf-compiler | |
- name: Run test suite | |
run: cargo nextest run --profile ci | |
clippy: | |
concurrency: | |
group: clippy-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/free-disk-space | |
- name: Install toolchain | |
id: toolchain | |
uses: actions-rs/toolchain@master | |
with: | |
profile: minimal | |
toolchain: stable | |
target: wasm32-unknown-unknown | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: Install Protobuf | |
run: sudo apt-get install protobuf-compiler | |
- name: Run clippy | |
run: cargo clippy --all-targets --workspace -- --deny warnings |