Skip to content

New CLI flags in binaries (#277) #123

New CLI flags in binaries (#277)

New CLI flags in binaries (#277) #123

Workflow file for this run

name: Code Checks
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
formatting:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Cargo fmt
run: cargo fmt --check
linting:
name: Check linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Cargo clippy
run: cargo clippy --no-deps --all-targets -- -Dwarnings