18 lines
314 B
YAML
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
|