Files
ismijnipverweg/.gitea/workflows/pylint.yml
Ruben van Staveren 7754b77b82
Some checks failed
Flake8 / build (3.11) (push) Successful in 9s
Mypy / build (3.11) (push) Failing after 1m59s
Pylint / build (3.11) (push) Successful in 29s
::error::Unsupported platform: freebsd Revert "Try this with uv"
This reverts commit 87a9b1dd5f.
2026-03-05 16:35:20 +01:00

18 lines
297 B
YAML

---
name: Pylint
on: [push]
# XXX need to do stuff with uv
jobs:
build:
runs-on: freebsd
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Analyse code with Pylint
run: |
pylint $(git ls-files '*.py')