Skip to content

Merge pull request #28 from hacettepeoyt/fix-config #8

Merge pull request #28 from hacettepeoyt/fix-config

Merge pull request #28 from hacettepeoyt/fix-config #8

Workflow file for this run

---
name: Lint
on:
pull_request:
push:
branches:
- 'master'
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