.git-crypt|secrets: setup git-crypt as secrets provider #45
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: Exhaustive Flake Test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- staging | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
outputs: [ | |
'nixosConfigurations.LAPTOP-3DT4F02.config.system.build.toplevel', | |
'nixosConfigurations.DESKTOP-3DT4F02.config.system.build.toplevel', | |
'nixosConfigurations.ISO-3DT4F02.config.system.build.isoImage' | |
] | |
steps: | |
- name: Free Disk Space | |
uses: jlumbroso/[email protected] | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Install Nix | |
uses: cachix/install-nix-action@v30 | |
with: | |
extra_nix_config: | | |
allow-import-from-derivation = false | |
eval-cache = false | |
- run: | |
nix flake check | |
- run: | |
nix build '.#${{ matrix.outputs }}' |