Roles pallet Implementation #642
Workflow file for this run
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 nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2023-07-16 | |
override: true | |
components: rustfmt | |
- name: Rustfmt check | |
run: cargo fmt --all -- --check | |
test: | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install toolchain | |
id: toolchain | |
uses: actions-rs/toolchain@master | |
with: | |
profile: minimal | |
toolchain: nightly | |
target: wasm32-unknown-unknown | |
- name: Install cargo-nextest | |
uses: baptiste0928/cargo-install@v1 | |
with: | |
crate: cargo-nextest | |
version: latest | |
- 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 --release --workspace | |
clippy: | |
concurrency: | |
group: clippy-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install toolchain | |
id: toolchain | |
uses: actions-rs/toolchain@master | |
with: | |
profile: minimal | |
toolchain: nightly | |
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 | |
build: | |
concurrency: | |
group: build-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install toolchain | |
id: toolchain | |
uses: actions-rs/toolchain@master | |
with: | |
profile: minimal | |
toolchain: nightly | |
target: wasm32-unknown-unknown | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: Install Protobuf | |
run: sudo apt-get install protobuf-compiler | |
- name: Check | |
run: cargo check --release | |