Skip to content
This repository was archived by the owner on Apr 28, 2026. It is now read-only.

Prepare 0.0.7 release #11

Prepare 0.0.7 release

Prepare 0.0.7 release #11

Workflow file for this run

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