Update cachix/install-nix-action digest to 13d8dd5 #181
This file contains hidden or 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 - Test Templates" | |
| on: | |
| pull_request: | |
| jobs: | |
| detect-changes: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| templates: ${{ steps.filter.outputs.changes }} | |
| steps: | |
| - uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| filters: | | |
| nix-use-direnv: ./**/nix-use-direnv/** | |
| nix-use-flake: ./**/nix-use-flake/** | |
| nix-use-home-manager: ./**/nix-use-home-manager/** | |
| nix-use-home-manager-flake: ./**/nix-use-home-manager-flake/** | |
| test: | |
| needs: [detect-changes] | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| strategy: | |
| matrix: | |
| templates: ${{ fromJSON(needs.detect-changes.outputs.templates) }} | |
| steps: | |
| - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
| - name: Smoke test for '${{ matrix.templates }}' | |
| id: smoke_test | |
| uses: ./.github/actions/smoke-test | |
| with: | |
| template: "${{ matrix.templates }}" |