Skip to content

build(deps): bump the all-dependencies group with 6 updates #41

build(deps): bump the all-dependencies group with 6 updates

build(deps): bump the all-dependencies group with 6 updates #41

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
jobs:
check:
name: Check (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Clippy
run: cargo clippy --all-targets
- name: Format
run: cargo fmt -- --check
- name: Test
run: cargo test