This repository was archived by the owner on Apr 28, 2026. It is now read-only.
Prepare 0.0.8 release #12
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: Rust CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/rust_ci.yml" | |
| - "src-tauri/**" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/rust_ci.yml" | |
| - "src-tauri/**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| rust: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - name: Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| workspaces: src-tauri -> target | |
| - name: Check | |
| run: cargo check --manifest-path src-tauri/Cargo.toml | |
| - name: Clippy | |
| run: cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings | |
| - name: Test | |
| run: cargo test --manifest-path src-tauri/Cargo.toml |