Skip to content

Bump clap from 4.5.3 to 4.5.4 #179

Bump clap from 4.5.3 to 4.5.4

Bump clap from 4.5.3 to 4.5.4 #179

Workflow file for this run

name: Rust
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --locked --verbose
- name: Run tests
run: cargo test --verbose
- name: Check formatting
run: cargo fmt -- --check
- name: Run clippy
run: cargo clippy --all-targets -- -D warnings