This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
jos/.woodpecker.yml

18 lines
314 B
YAML

matrix:
PYTHON_VERSION:
- 3.8
- 3.9
pipeline:
test:
# Alpine version doesn't have make
image: python:${PYTHON_VERSION}
pull: true
commands:
- make test
lint:
image: python:${PYTHON_VERSION}
commands:
- make lint