Skip to content

UX Issues - Avoid clustered compiled contracts by only keeping track of their latest versions #147

UX Issues - Avoid clustered compiled contracts by only keeping track of their latest versions

UX Issues - Avoid clustered compiled contracts by only keeping track of their latest versions #147

Workflow file for this run

name: Check Rust Linting
on:
pull_request:
branches:
- develop
jobs:
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt
- run: cd api && cargo +nightly fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy
- run: cd api && cargo clippy --all -- -D warnings