remove unused flake inputs #78
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - claude/** | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| extra_nix_config: | | |
| experimental-features = nix-command flakes pipe-operators | |
| - name: Nix store cache | |
| uses: nix-community/cache-nix-action@v7 | |
| with: | |
| primary-key: nix-${{ runner.os }}-lint-${{ hashFiles('flake.lock') }} | |
| restore-prefixes-first-match: nix-${{ runner.os }}-lint- | |
| gc-max-store-size-linux: 2G | |
| purge: true | |
| purge-prefixes: nix-${{ runner.os }}-lint- | |
| purge-created: 0 | |
| purge-primary-key: never | |
| - name: Run deadnix | |
| run: nix develop --command deadnix --fail . | |
| - name: Run statix | |
| run: nix develop --command statix check . |