Skip to content

build(deps): bump cargo-config2 from 0.1.31 to 0.1.32 #576

build(deps): bump cargo-config2 from 0.1.31 to 0.1.32

build(deps): bump cargo-config2 from 0.1.31 to 0.1.32 #576

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: Install cargo-sort
run: cargo install --locked cargo-sort
- name: Check formatting
run: ci/fmt.sh
check:
strategy:
fail-fast: false
matrix:
toolchain: [ stable, "1.81" ] # Check latest stable and MSRV
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Check
run: ci/check.sh
shell: bash