ci: add nix-flake-check github action #9
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: Home Manager Standalone Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- name: Run Nix Build | |
run: nix run home-manager/release-24.05 -- build --flake .#rgoulter-x86_64-linux | |
macos: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- name: Run Nix Build | |
run: nix run home-manager/release-24.05 -- build --flake .#richardgoulter-x86_64-darwin |