2024-02-02 10:51:55 +01:00
|
|
|
name: lint
|
2024-08-17 18:00:10 +02:00
|
|
|
on: [push, pull_request]
|
2024-02-02 10:51:55 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: nix
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Run pre-commit on all files
|
2024-09-12 20:13:31 +02:00
|
|
|
run: nix-shell --run 'pre-commit run --all-files --hook-stage pre-push --show-diff-on-failure' -A shells.pre-commit ./.
|