hyprland/workspaces persistent fix and improve cursor handling configuration #3914
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: linux | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-linux-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| distro: | |
| - alpine | |
| - archlinux | |
| - debian | |
| - fedora | |
| - opensuse | |
| - gentoo | |
| cpp_std: [c++20] | |
| runs-on: ubuntu-latest | |
| container: | |
| image: alexays/waybar:${{ matrix.distro }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: configure | |
| run: meson setup -Dman-pages=enabled -Dcpp_std=${{matrix.cpp_std}} build | |
| - name: build | |
| run: ninja -C build | |
| - name: test | |
| run: make test |