Add the CLI feature when running...bin? #227
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pr | |
on: | |
pull_request: | |
branches: ["main"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Install Rust with clippy/rustfmt | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
components: clippy, rustfmt | |
# Make sure u guys don't write bad code | |
- run: cargo test --verbose | |
- run: cargo clippy --no-deps | |
- run: cargo fmt --check | |
# Check for unused dependencies | |
- uses: bnjbvr/cargo-machete@main |