Skip to content

mailmap 🏳️‍⚧️🏳️‍⚧️🏳️‍⚧️ #76

mailmap 🏳️‍⚧️🏳️‍⚧️🏳️‍⚧️

mailmap 🏳️‍⚧️🏳️‍⚧️🏳️‍⚧️ #76

Workflow file for this run

name: Lint & Fmt
on:
push:
branches: [ material-3 ]
pull_request:
branches: [ material-3 ]
jobs:
lint:
name: Fmt & Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-${{ runner.os }}-lint-${{ hashFiles('**/Cargo.toml') }}
restore-keys: |
cargo-${{ runner.os }}-
- name: Run cargo fmt
run: cargo +nightly fmt -- --check
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings