rm: unwanted programs and functions #396
Workflow file for this run
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
| # Validate Nix flake — check inputs and run `nix flake check`. | |
| name: Validate Flake | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: {} | |
| jobs: | |
| validate: | |
| name: Flake Check | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: DeterminateSystems/determinate-nix-action@v3 | |
| - name: Validate flake inputs | |
| uses: DeterminateSystems/flake-checker-action@main | |
| with: | |
| check-owner: false | |
| ignore-missing-flake-lock: false | |
| fail-mode: true | |
| - name: Run nix flake check | |
| run: nix flake check --show-trace |