Skip to content

lint: add automatic linter to check config #3

lint: add automatic linter to check config

lint: add automatic linter to check config #3

Workflow file for this run

---
name: Lint
on:
push:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: run lint scripts
run: |
for f in lint/lint-*.py; do
if ! python $f; then
echo "errors from $f ^^^^"
exit 1
fi
done