chore: v0.9.0 — invisible captcha solving, latest-model policy, metat… #38
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |