squirrel-battle/.gitlab-ci.yml

27 lines
406 B
YAML
Raw Normal View History

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