Skip to content

Bump clap from 4.5.21 to 4.5.23 (#77) #163

Bump clap from 4.5.21 to 4.5.23 (#77)

Bump clap from 4.5.21 to 4.5.23 (#77) #163

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
- Develop
pull_request:
branches:
- main
- Develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Rust
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose
- name: Fmt
run: cargo fmt --check
- name: Clippy
run: cargo clippy --verbose --all -- -D warnings
- name: Audit
run: cargo audit