Files
glowtables/.woodpecker.yml
Val Lorentz b10f01d30b
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Setup Python project and CI
2023-05-20 14:25:39 +02:00

36 lines
672 B
YAML

pipeline:
flake8:
group: lint
image: python:3.9
commands:
- pip3 install flake8
- flake8 glowtables/
pylint:
group: lint
image: cytopia/pylint
commands:
- pylint glowtables/
black:
group: lint
image: pyfound/black:22.8.0
commands:
- black --check glowtables/
test-py3.9:
group: test
image: python:3.9
commands: &test_commands
- apt-get update
- pip3 install mypy .[testing]
- make mypy
- make pytest
test-py3.10:
group: test
image: python:3.10
commands: *test_commands
test-py3.11:
group: test
image: python:3.11
commands: *test_commands