stable-baselines3/.gitlab-ci.yml
Antonin RAFFIN 77f4f5021d
Drop Python 3.6 support (#685)
* Drop python 3.6 support

* Update doc

* Update gitlab CI

* Update doc env

* Fix gitlab CI
2021-12-06 12:54:43 +01:00

22 lines
410 B
YAML

image: stablebaselines/stable-baselines3-cpu:1.3.1a3
type-check:
script:
- make type
pytest:
script:
- python --version
# Fix to get atari ROMs
- pip install atari-py==0.2.5
# MKL_THREADING_LAYER=GNU to avoid MKL_THREADING_LAYER=INTEL incompatibility error
- MKL_THREADING_LAYER=GNU make pytest
doc-build:
script:
- make doc
lint-check:
script:
- make check-codestyle
- make lint