fix(widgets): focus ring applies to cards in QS when using keyboard nav #339
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: | |
| branches: [main] | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUSTFLAGS: '-Dwarnings' | |
| jobs: | |
| fmt: | |
| runs-on: ubuntu-latest | |
| name: Formatting | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: cargo fmt --check | |
| check: | |
| runs-on: ubuntu-latest | |
| container: rust:trixie | |
| name: Clippy & Test | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| apt-get update | |
| apt-get install -y \ | |
| libgtk-4-dev \ | |
| libgtk4-layer-shell-dev \ | |
| libpulse-dev \ | |
| libudev-dev \ | |
| libdbus-1-dev | |
| rustup component add clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: cargo clippy --all-targets -- -D warnings | |
| - run: cargo test --verbose | |
| font-check: | |
| runs-on: ubuntu-latest | |
| name: Font subset manifest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: ./scripts/subset-font.sh --check |