Skip to content

docs(changelog): record the failed-command passthrough fix under Unre… #572

docs(changelog): record the failed-command passthrough fix under Unre…

docs(changelog): record the failed-command passthrough fix under Unre… #572

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"
jobs:
ci:
name: make ci (ubuntu)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Install CI cargo tools
run: |
cargo install --locked cargo-insta
cargo install --locked cargo-audit
- name: Run canonical CI pipeline
run: make ci
test-matrix:
name: cargo test (${{ matrix.os }})
needs: ci
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest]
steps:
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test --all