Skip to content

chore(deps): bump clap_complete from 4.5.6 to 4.5.12 (#1) #33

chore(deps): bump clap_complete from 4.5.6 to 4.5.12 (#1)

chore(deps): bump clap_complete from 4.5.6 to 4.5.12 (#1) #33

Workflow file for this run

name: Rust CI
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update nightly && rustup default nightly && rustup component add rustfmt
- run: cargo fmt --check