flake.*: bump, release-25.05 -> nixos-25.05
#148
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 the Flake | |
| on: | |
| pull_request: null | |
| push: null | |
| workflow_dispatch: null | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.ref }}" | |
| cancel-in-progress: true | |
| jobs: | |
| linux-check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/[email protected] | |
| - name: Install Nix | |
| uses: cachix/[email protected] | |
| with: | |
| github_access_token: "${{ secrets.GITHUB_TOKEN }}" | |
| - name: Run Flake Checker | |
| uses: DeterminateSystems/flake-checker-action@main | |
| with: | |
| check-outdated: true | |
| check-owner: true | |
| check-supported: true | |
| fail-mode: true | |
| ignore-missing-flake-lock: false | |
| - name: Check Linux Configuration | |
| run: nix flake check --show-trace | |
| darwin-check: | |
| runs-on: macos-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/[email protected] | |
| - name: Install Nix | |
| uses: cachix/[email protected] | |
| with: | |
| github_access_token: "${{ secrets.GITHUB_TOKEN }}" | |
| - name: Check Darwin Configuration | |
| run: sudo nix run nix-darwin -- check --flake . |