Skip to content

chore: v0.9.0 — invisible captcha solving, latest-model policy, metat… #38

chore: v0.9.0 — invisible captcha solving, latest-model policy, metat…

chore: v0.9.0 — invisible captcha solving, latest-model policy, metat… #38

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- run: cargo fmt --check
- run: cargo clippy --all-targets -- -D warnings
- run: cargo test
- run: cargo build --release
# Vendored framework contract probe (conformance/ tracks
# paperfoot/agent-cli-framework) — the release binary must conform.
- run: ./conformance/conformance.sh target/release/suno
# release.yml ships Windows + macOS binaries; the guard's platform-specific
# process-liveness (libc::kill vs OpenProcess) only compiles here, so build +
# test on those runners to stop a windows-msvc regression reaching a release.
cross-platform:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo build --all-targets
- run: cargo test