flake.lock: Update #384
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
| # This file is autogenerated. Edit the nickel source instead. | |
| jobs: | |
| build-and-test-linux: | |
| continue-on-error: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checking out the repository | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: '0' | |
| - name: Installing Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| extra_nix_config: |- | |
| experimental-features = nix-command flakes | |
| accept-flake-config = true | |
| fallback = true | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - name: Run all checks | |
| run: nix flake check --print-build-logs | |
| build-and-test-macos: | |
| continue-on-error: false | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checking out the repository | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: '0' | |
| - name: Installing Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| extra_nix_config: |- | |
| experimental-features = nix-command flakes | |
| accept-flake-config = true | |
| fallback = true | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - name: Run all checks | |
| run: nix flake check --print-build-logs | |
| name: Continuous integration | |
| on: | |
| merge_group: {} | |
| pull_request: {} | |
| push: | |
| branches: | |
| - master |