Add version info. Add linter
All checks were successful
CI / test (push) Successful in 2m22s
Lint / test (push) Successful in 13s
Trivy / test (push) Successful in 21s

This commit is contained in:
Miguel Jacq 2025-11-13 16:26:35 +11:00
parent c191d9f35c
commit d338033333
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
7 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,25 @@
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/*