build(deps): bump cachix/install-nix-action from 30 to 31 (#19) #55
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| - name: Setup Cachix | |
| uses: cachix/cachix-action@v16 | |
| with: | |
| name: gaelreyrol | |
| - name: Run Dhall linter | |
| run: nix develop --command dhall lint Resume/*.dhall | |
| - name: Run Formatter check | |
| run: nix fmt . -- --check | |
| - name: Run Flake check | |
| run: nix flake check |