Skip to content

Cleanup unused imports and enforce Clippy lints #58

Cleanup unused imports and enforce Clippy lints

Cleanup unused imports and enforce Clippy lints #58

Workflow file for this run

name: Rust
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clippy
uses: actions-rs-plus/clippy-check@v2
with:
toolchain: nightly-2023-11-01
args: --all-targets --all-features -- -D warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: cargo test --verbose