flake.lock: Update #291
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: Checks | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| paths: | |
| - '**/*.nix' | |
| - 'flake.lock' | |
| jobs: | |
| nix: | |
| name: Nix Flake Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: docker/setup-qemu-action@v3 | |
| - uses: cachix/install-nix-action@v31 | |
| with: | |
| extra_nix_config: | | |
| extra-platforms = aarch64-linux aarch64-darwin x86_64-darwin | |
| - uses: actions/checkout@v6 | |
| - name: Run nix flake check | |
| run: nix flake check --all-systems --show-trace |