bouquin/.forgejo/workflows/lint.yml
Miguel Jacq d338033333
All checks were successful
CI / test (push) Successful in 2m22s
Lint / test (push) Successful in 13s
Trivy / test (push) Successful in 21s
Add version info. Add linter
2025-11-13 16:26:35 +11:00

25 lines
475 B
YAML

name: Lint
on:
push:
jobs:
test:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install system dependencies
run: |
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
black pyflakes3
- name: Run linters
run: |
black bouquin/*
black tests/*
pyflakes3 bouquin/*
pyflakes3 tests/*