feat(bar): add hover accordion mode to capsule groups #2532
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, master] | |
| pull_request: | |
| # Cancel in-progress runs for the same branch/PR when new commits land. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| format: | |
| name: clang-format | |
| runs-on: ubuntu-latest | |
| container: | |
| image: archlinux:latest | |
| steps: | |
| - name: Install tools | |
| run: | | |
| pacman -Syu --noconfirm --needed git clang | |
| - uses: actions/checkout@v6 | |
| - name: Check formatting | |
| run: | | |
| mapfile -d '' files < <(find src \( -name '*.cpp' -o -name '*.h' \) -print0) | |
| clang-format --dry-run -Werror "${files[@]}" | |
| build: | |
| name: Build (debug) | |
| runs-on: ubuntu-latest | |
| container: | |
| image: archlinux:latest | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| pacman -Syu --noconfirm --needed \ | |
| base-devel git meson ninja pkgconf \ | |
| wayland wayland-protocols \ | |
| libglvnd freetype2 fontconfig \ | |
| cairo pango harfbuzz \ | |
| libxkbcommon glib2 \ | |
| libsecret libsodium \ | |
| sdbus-cpp libpipewire wireplumber polkit \ | |
| pam curl libwebp libjxl libsndfile librsvg \ | |
| libqalculate libxml2 \ | |
| md4c tomlplusplus libical \ | |
| nlohmann-json stb \ | |
| jemalloc just clang | |
| - uses: actions/checkout@v6 | |
| - name: Build | |
| run: just build | |
| - name: Test | |
| run: just test debug --print-errorlogs | |
| - name: Lint | |
| run: just lint |