Skip to content

Add on-device dictation with Whisper #252

Add on-device dictation with Whisper

Add on-device dictation with Whisper #252

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test-tauri:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install CMake
run: command -v cmake >/dev/null 2>&1 || brew install cmake
- name: Rust tests
run: cargo test
working-directory: src-tauri
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- uses: dtolnay/rust-toolchain@stable
- name: Install CMake
run: command -v cmake >/dev/null 2>&1 || brew install cmake
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Tauri debug build
run: npm run tauri -- build --debug --no-bundle