Skip to content

build(deps): bump the all-actions group with 4 updates (#1) #7

build(deps): bump the all-actions group with 4 updates (#1)

build(deps): bump the all-actions group with 4 updates (#1) #7

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