mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
The parse workflow currently runs the nix and Lix checks as two separate steps. If the first parser fails, GitHub Actions stops the job before the second parser runs, which hides useful failure information and weakens the signal from the new parse gate. Collapse the two steps into a single invocation that builds both parse derivations with --keep-going. This keeps the job surface small, preserves the dedicated parse trigger, and ensures both parser variants are attempted on every relevant run.