feat: restore hypr feature #29
This file contains 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: "Build all packages using Nix" | |
on: | |
push: | |
paths: | |
# Run the workflow <=> when relevant files are changed | |
- 'flake.nix' | |
- 'overlay/**.nix' | |
jobs: | |
nix-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v27 | |
# Maybe TODO | |
# - run: nix flake check | |
# Explicitly build all features | |
- run: nix build .# | |
- run: nix build .#xremap-wlroots | |
- run: nix build .#xremap-gnome | |
- run: nix build .#xremap-hypr | |
- run: nix build .#xremap-sway | |
- run: nix build .#xremap-x11 | |
- run: nix build .#xremap-kde |