feat(workflows): add checks and linting with statix and deadnix #1
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: | |
pull_request: | |
push: | |
jobs: | |
check-flakes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v20 | |
- run: nix flake check | |
statix-deadnix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v20 | |
- run: nix shell nixpkgs#statix nixpkgs#deadnix | |
- run: statix fix && deadnix -e | |
# Auto | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: 'style: statix & deadnix' |