Skip to content

Merge remote-tracking branch 'origin/alejandro/t4.1-tauri-scaffold' #18

Merge remote-tracking branch 'origin/alejandro/t4.1-tauri-scaffold'

Merge remote-tracking branch 'origin/alejandro/t4.1-tauri-scaffold' #18

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --all --check
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo test --all