Skip to content

chore(deps): bump dialoguer from 0.10.4 to 0.11.0 #248

chore(deps): bump dialoguer from 0.10.4 to 0.11.0

chore(deps): bump dialoguer from 0.10.4 to 0.11.0 #248

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