chore(deps): Bump DeterminateSystems/nix-installer-action from 14 to 15 #26
This file contains 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 | |
'on': | |
push: | |
branches: | |
- main | |
jobs: | |
format: | |
name: File formatting | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@v15 | |
- uses: DeterminateSystems/magic-nix-cache-action@v8 | |
- run: 'nix fmt . -- --check' | |
- run: 'nix run nixpkgs#yamllint -- --strict --format github .' | |
- run: 'nix run nixpkgs#deadnix -- .' | |
- run: 'nix run nixpkgs#statix -- check' | |
check: | |
name: Check flake | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@v15 | |
- uses: DeterminateSystems/magic-nix-cache-action@v8 | |
- run: 'nix flake check' | |
- run: 'nix build .#default' |