Add About dialog and settings tooltips #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |