12 lines
247 B
YAML
12 lines
247 B
YAML
|
name: lint
|
||
|
on: push
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
runs-on: nix
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Run pre-commit on all files
|
||
|
run: nix-shell --run 'pre-commit run --all-files --show-diff-on-failure' -A shells.pre-commit ./.
|