Merge pull request #195 from Eisfunke/fix-home-shellcheck #341
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: "CI" | |
on: | |
pull_request: | |
push: | |
jobs: | |
tests-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
extra-conf: "system-features = nixos-test benchmark big-parallel kvm" | |
- run: nix build | |
- run: nix build .#doc | |
- run: nix fmt . -- --check | |
- run: nix flake check | |
tests-darwin: | |
runs-on: macos-11 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
extra-conf: "system-features = nixos-test benchmark big-parallel kvm" | |
- run: nix build | |
- run: nix build .#doc | |
- run: nix fmt . -- --check | |
- run: nix flake check | |
- name: "Install nix-darwin module" | |
run: | | |
system=$(nix build --no-link --print-out-paths .#checks.x86_64-darwin.integration) | |
${system}/activate-user | |
sudo ${system}/activate | |
- name: "Test nix-darwin module" | |
run: | | |
sudo /run/current-system/sw/bin/agenix-integration | |
- name: "Test home-manager module" | |
run: | | |
# Do the job of `home-manager switch` in-line to avoid rate limiting | |
nix build .#homeConfigurations.integration-darwin.activationPackage | |
./result/activate | |
~/agenix-home-integration/bin/agenix-home-integration |