Skip to content

refactor: currency traits and implementations #207

refactor: currency traits and implementations

refactor: currency traits and implementations #207

Workflow file for this run

name: Rust Linting
on:
push:
branches:
- master
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
lint:
name: Rust Lint Check
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache Cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: Install Rust toolchain via rustup
run: |
rustup override set nightly
rustup component add clippy --toolchain nightly
rustup component add rustfmt --toolchain nightly
- name: Check lint
run: cargo clippy -- -D warnings
- name: Check formatting
run: cargo fmt -- --check