Skip to content

Fix instant seal

Fix instant seal #1983

Workflow file for this run

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