feat: swap preset backend from electrs to fulcrum #10
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: check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v30 | |
| with: | |
| extra_nix_config: | | |
| experimental-features = nix-command flakes | |
| accept-flake-config = true | |
| - name: nix fmt --ci | |
| run: nix fmt -- --ci | |
| flake-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v30 | |
| with: | |
| extra_nix_config: | | |
| experimental-features = nix-command flakes | |
| accept-flake-config = true | |
| # Pulls cached frigate + VM-test outputs from prior runs, and pushes | |
| # any new outputs back. Skips the Gradle build entirely on cache hits. | |
| - uses: cachix/cachix-action@v15 | |
| with: | |
| name: 2140-dev | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - name: nix flake check | |
| run: nix flake check --print-build-logs |