Skip to content

docs: record public alpha handoff #11

docs: record public alpha handoff

docs: record public alpha handoff #11

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pinned:
name: Rust 1.88 / ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
runner: [macos-15, macos-15-intel]
runs-on: ${{ matrix.runner }}
env:
RUST_VERSION: 1.88.0
MACOSX_DEPLOYMENT_TARGET: "15.0"
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Runner identity
run: sw_vers && uname -m && rustc --version --verbose && cargo --version
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-${{ runner.os }}-${{ runner.arch }}-${{ env.RUST_VERSION }}-${{ hashFiles('Cargo.lock') }}
- run: cargo fetch --locked
- run: cargo fmt --all -- --check
- run: cargo clippy --locked --all-targets --all-features -- -D warnings
- run: cargo test --locked --all-targets --all-features
- run: cargo build --release --locked
- run: scripts/check-package-contents.sh
stable:
name: Current stable compatibility
runs-on: macos-15
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- run: rustup toolchain install stable --profile minimal
- run: cargo +stable check --locked --all-targets --all-features