flake.lock: Update #385
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: cache | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: "Install Nix️" | |
| uses: cachix/install-nix-action@v31 | |
| - name: "Run checks" | |
| run: nix flake check | |
| - name: "Build dev shells" | |
| run: for shell in library application; do nix develop .#${shell} -c true; done |