Add flag for primary funding method. #323
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: Checks | |
| on: | |
| push: {} | |
| workflow_dispatch: | |
| jobs: | |
| build_all: | |
| name: Build All | |
| runs-on: [nix] | |
| steps: | |
| - name: git checkout | |
| uses: actions/checkout@v4 | |
| - name: Build Nix | |
| shell: bash | |
| run: | | |
| nix flake check \ | |
| --keep-going \ | |
| --no-update-lock-file \ | |
| --print-build-logs \ | |
| --show-trace |