Bump the cli group across 1 directory with 5 updates #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint-and-test: | |
runs-on: | |
labels: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: 1.83.0 | |
components: clippy, rustfmt | |
- name: Run clippy | |
run: cargo clippy --all-targets --all-features -- --deny warnings | |
- name: Run rustfmt | |
run: cargo fmt --all -- --check | |
- name: Run tests | |
run: cargo test |