fix(flake-info): fail group import when any member fails #718
Workflow file for this run
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: "Build flake-info" | |
| on: | |
| pull_request: | |
| paths: | |
| - "flake.nix" | |
| - "flake.lock" | |
| - "flake-info/**" | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-flake-info: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checking out the repository | |
| uses: actions/checkout@v6.0.2 | |
| - name: Setup | |
| uses: ./.github/actions/common-setup | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }} | |
| - name: Building flake-info | |
| shell: sh | |
| run: | | |
| nix --accept-flake-config -vL build .#flake-info | |
| - name: Running flake-info tests | |
| shell: sh | |
| run: | | |
| nix-build ./flake-info/assets/commands/test --option substituters "https://cache.nixos.org" |