Skip to content

Bump clap from 4.5.8 to 4.5.13 #198

Bump clap from 4.5.8 to 4.5.13

Bump clap from 4.5.8 to 4.5.13 #198

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