Skip to content

update deps

update deps #31

Workflow file for this run

name: code linter
on:
push:
branches: ["main","dev"]
env:
CARGO_TERM_COLOR: always
RUST_LOG: info
jobs:
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features