Merge pull request #1319 from josh/push-kkzqpkzrowxp #3026
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: Nix | |
| on: | |
| push: | |
| workflow_dispatch: | |
| env: | |
| NIX_ABORT_ON_WARN: "1" | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - "ubuntu-24.04" | |
| - "ubuntu-24.04-arm" | |
| - "macos-15" | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| with: | |
| extra-conf: | | |
| accept-flake-config = true | |
| allow-import-from-derivation = false | |
| - uses: cachix/cachix-action@v16 | |
| with: | |
| name: josh | |
| authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
| - name: Check flake | |
| run: | | |
| nix flake check --keep-going --print-build-logs github:${{ github.repository }}/${{ github.sha }} |