Setup Python project and CI
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
35
.woodpecker.yml
Normal file
35
.woodpecker.yml
Normal file
@ -0,0 +1,35 @@
|
||||
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
|
Reference in New Issue
Block a user