mineshspc.com: update to d905651feb814e3a57ba59635dd5a0ecf8401c21 #267
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: Lint | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check Nix flake inputs | |
uses: DeterminateSystems/flake-checker-action@v8 | |
with: | |
fail-mode: true | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v12 | |
- name: Run pre-commit | |
run: nix develop --command pre-commit run --all --verbose |