Skip to content

chore(deps): bump log from 0.4.21 to 0.4.22 #80

chore(deps): bump log from 0.4.21 to 0.4.22

chore(deps): bump log from 0.4.21 to 0.4.22 #80

Workflow file for this run

name: Code Lint
on: [push]
jobs:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Cargo format
run: cargo fmt --all -- --check
- name: Cargo clippy
run: cargo clippy --all-targets