Skip to content

Bump log from 0.4.32 to 0.4.33 #120

Bump log from 0.4.32 to 0.4.33

Bump log from 0.4.32 to 0.4.33 #120

Workflow file for this run

name: Checks
on: [ pull_request, push ]
jobs:
# Code formatting.
fmt:
name: cargo-fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --all -- --check
# Static analyzer.
clippy:
name: cargo-clippy
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy --all-targets --all-features -- -D warnings -D clippy::unwrap_used