feat(apply): add summarize subcommand using OpenAI-compatible LLMs (#2691) #11136
Workflow file for this run
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: Linux | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-linux-tests-${{ github.ref }}-1 | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| # Skip CI for MCP-only commits (commit message contains "(mcp):") | |
| if: | | |
| github.event_name != 'push' || | |
| !contains(github.event.head_commit.message, '(mcp):') | |
| runs-on: ubuntu-latest | |
| # Hard cap so a hung test fails fast instead of burning the 6-hour GitHub default. | |
| timeout-minutes: 90 | |
| steps: | |
| - name: apt-get update Ubuntu, libwayland-dev | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libwayland-dev | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: '3.13' | |
| - name: Install and Run Redis | |
| run: | | |
| sudo apt-get install redis-server | |
| sudo service redis-server start | |
| - name: Installing Rust toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| targets: x86_64-unknown-linux-gnu | |
| - name: Setup Rust-cache | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| key: qsv-linuxcache | |
| # - uses: actions/cache@v4 | |
| # with: | |
| # path: | | |
| # ~/.cargo/bin/ | |
| # ~/.cargo/registry/index/ | |
| # ~/.cargo/registry/cache/ | |
| # ~/.cargo/git/db/ | |
| # target/ | |
| # key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Run tests | |
| # env: | |
| # RUSTFLAGS: -C target-cpu=native | |
| run: cargo test --verbose --locked --features=apply,fetch,foreach,geocode,luau,python,feature_capable,lens,magika,color |