fix(desktop): stream public web-search turns #264
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: Desktop Backend Rust | |
| on: | |
| pull_request: | |
| paths: | |
| - "desktop/macos/Backend-Rust/**" | |
| - ".github/workflows/desktop-backend-rust.yml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "desktop/macos/Backend-Rust/**" | |
| - ".github/workflows/desktop-backend-rust.yml" | |
| jobs: | |
| rust: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: desktop/macos/Backend-Rust | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - name: Cache cargo | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| workspaces: desktop/macos/Backend-Rust | |
| - name: Clippy | |
| run: cargo clippy -- -D warnings | |
| - name: Test | |
| run: cargo test --locked |