Skip to content

Merge pull request #56 from Umatriz/loading_fix #16

Merge pull request #56 from Umatriz/loading_fix

Merge pull request #56 from Umatriz/loading_fix #16

Workflow file for this run

name: Lint
on: {push, workflow_dispatch}
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Clone project
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Rustfmt
run: cargo fmt -- --check
clippy:
runs-on: ubuntu-latest
steps:
- name: Clone project
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Clippy
run: cargo clippy -- -D warnings