ci: add xremap-wlroots build #6
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 <=> .nix files changed | |
- '**.nix' | |
jobs: | |
nix-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v22 | |
# 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 |