Skip to content

chore(deps-dev): bump mypy from 1.19.1 to 1.20.1 #16

chore(deps-dev): bump mypy from 1.19.1 to 1.20.1

chore(deps-dev): bump mypy from 1.19.1 to 1.20.1 #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore:
- ".changes/**"
- "CHANGELOG.md"
pull_request:
branches: [main]
paths-ignore:
- ".changes/**"
- "CHANGELOG.md"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
target/
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: cargo-${{ runner.os }}-
- run: cargo fmt --check
- run: cargo clippy -- -D warnings
- run: cargo test
- run: cargo build