Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat(filter-ui): Add filters bar, help modal, and better tooltips #565

feat(filter-ui): Add filters bar, help modal, and better tooltips

feat(filter-ui): Add filters bar, help modal, and better tooltips #565

Workflow file for this run

name: Rust CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
RUST_TOOLCHAIN: nightly-2025-05-09
jobs:
rust:
name: Rust ${{ matrix.name }}
runs-on: macos-14
strategy:
fail-fast: false
matrix:
include:
- name: fmt
command: cargo fmt --all -- --check
- name: clippy
command: cargo clippy --workspace --all-targets -- -D warnings
- name: check
command: cargo check --workspace --all-targets
- name: test
command: cargo test --workspace
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: clippy, rustfmt
- name: Cache cargo build artifacts
uses: Swatinem/rust-cache@v2
- name: Run ${{ matrix.name }}
run: ${{ matrix.command }}
tauri:
name: Tauri ${{ matrix.name }}
runs-on: macos-14
strategy:
fail-fast: false
matrix:
include:
- name: fmt
command: cargo fmt -- --check
- name: clippy
command: cargo clippy --all-targets -- -D warnings
- name: check
command: cargo check --all-targets
- name: test
command: cargo test
defaults:
run:
working-directory: cardinal/src-tauri
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: clippy, rustfmt
- name: Cache cargo build artifacts
uses: Swatinem/rust-cache@v2
with:
workspaces: cardinal/src-tauri
- name: Run ${{ matrix.name }}
run: ${{ matrix.command }}