squirrel-battle/.gitlab-ci.yml

34 lines
512 B
YAML
Raw Normal View History

2020-10-02 15:48:39 +02:00
stages:
- test
- quality-assurance
py37:
stage: test
image: python:3.7-alpine
before_script:
- pip install tox
script: tox -e py3
2020-10-02 15:48:39 +02:00
py38:
stage: test
2020-10-09 14:34:03 +02:00
image: python:3.8-alpine
2020-10-02 15:48:39 +02:00
before_script:
- pip install tox
script: tox -e py3
2020-10-02 15:48:39 +02:00
2020-10-09 14:34:03 +02:00
py39:
stage: test
image: python:3.9-alpine
before_script:
- pip install tox
script: tox -e py3
2020-10-09 14:34:03 +02:00
2020-10-02 15:48:39 +02:00
linters:
stage: quality-assurance
image: python:3-alpine
before_script:
2020-10-09 18:24:13 +02:00
- pip install tox
2020-10-02 15:48:39 +02:00
script: tox -e linters
allow_failure: true