stable-baselines3/.gitlab-ci.yml
Antonin RAFFIN 15ff6d47ee
Documentation update and style fixes (#21)
* Update doc: add gSDE

* Fix codestyle

* Remove travis script

* Add lint check to gitlab
2020-05-15 13:54:06 +02:00

19 lines
370 B
YAML

image: stablebaselines/stable-baselines3-cpu:0.6.0a7
type-check:
script:
- make type
pytest:
script:
# 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:
- pip install flake8 # TODO: remove when new version on Pypi
- make lint