Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,21 @@ jobs:
node-version: 20
cache: pnpm

- name: Install system dependencies (Tauri v2)
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf

- uses: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2
with:
workspaces: apps/desktop/src-tauri

- name: Rust check (desktop backend)
run: cargo check
working-directory: apps/desktop/src-tauri

- name: Install dependencies
run: pnpm install --frozen-lockfile

Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@ packages/core/dist/

# CLI
apps/cli/dist/

# devlaunch (local project config)
.devlaunch.yml
2 changes: 2 additions & 0 deletions apps/desktop/src-tauri/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ pub mod settings;
pub mod observatory;
pub mod comparator;
pub mod comparator_db;
pub mod security;
pub mod security_db;
pub mod git;
pub mod evaluation;
pub mod export;
Expand Down
Loading