change the definition of MonadBr to match MonadTrigger #12
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 ctrees under nix" | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| runs-on: ${{ matrix.os }} | |
| permissions: | |
| id-token: "write" | |
| contents: "read" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DeterminateSystems/nix-installer-action@v19 | |
| - uses: DeterminateSystems/magic-nix-cache-action@v13 | |
| - uses: DeterminateSystems/flake-checker-action@v12 | |
| - name: Run nix build | |
| run: nix build . |