Skip to content

docs: split local and release acceptance gates #161

docs: split local and release acceptance gates

docs: split local and release acceptance gates #161

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
rust:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --all -- --check
- run: cargo check --workspace --all-targets
- run: cargo clippy --workspace --all-targets -- -D warnings
- run: cargo test --workspace
- run: .\scripts\package-installer.ps1 -ValidateOnly
- run: .\scripts\test-portable-package.ps1
- run: .\scripts\test-release-manifest.ps1
- run: .\scripts\test-release-tag.ps1
- run: .\scripts\test-verify-release-assets.ps1
- run: .\scripts\test-verify-github-release.ps1