Skip to content

chore(deps): bump indicatif from 0.16.2 to 0.17.6 #226

chore(deps): bump indicatif from 0.16.2 to 0.17.6

chore(deps): bump indicatif from 0.16.2 to 0.17.6 #226

Workflow file for this run

name: PR
on:
pull_request:
branches: [main]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Rust (nightly)
uses: dtolnay/rust-toolchain@nightly
id: rust-toolchain
with:
components: rustfmt, clippy
- name: Run tests
run: cargo test --locked
- name: Run linting
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Check formatting
run: cargo fmt --all -- --check