Skip to content

v0.1.0: ready to replace existing substrate subcommand #24

v0.1.0: ready to replace existing substrate subcommand

v0.1.0: ready to replace existing substrate subcommand #24

Workflow file for this run

name: Rust checks
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
rust-checks:
runs-on: ubuntu-20.04
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: "3.6.1"
- name: Install clippy and fmt
run: rustup component add clippy rustfmt
- name: Run Format Checks
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all
- name: Run Linter
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- --no-deps -D warnings
- name: Run Unit Test Suite
uses: actions-rs/cargo@v1
with:
command: test