suno 0.9.0

Generate AI music from your terminal — Suno v5.5 with tags, exclude, vocal control, and all generation features
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