Skip to content

chore: update links in Cargo.toml, Github Action for clippy #2

chore: update links in Cargo.toml, Github Action for clippy

chore: update links in Cargo.toml, Github Action for clippy #2

Workflow file for this run

name: Lint
on: [ push, pull_request ]
jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
run: rustup show && rustup update
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features --tests -- -D warnings