Skip to content

Add About dialog and settings tooltips #5

Add About dialog and settings tooltips

Add About dialog and settings tooltips #5

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
linux:
name: Linux policy and lint gates
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy,rustfmt
- run: cargo fmt --all -- --check
- run: cargo test --workspace --all-targets
- run: cargo clippy --workspace --all-targets -- -D warnings
- uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
windows:
name: Windows x64 build and tests
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo test --workspace --all-targets
- run: cargo clippy --workspace --all-targets -- -D warnings
- run: cargo build --workspace --release