Skip to content

add -D warnings to clippy #37

add -D warnings to clippy

add -D warnings to clippy #37

Workflow file for this run

name: Rust
on: push
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Check rust formatting
run: cargo fmt --all --check
- name: Clippy
run: cargo clippy --all-features -- -D warnings