stable-baselines3/.gitlab-ci.yml
2022-05-03 16:27:27 +02:00

21 lines
386 B
YAML

image: stablebaselines/stable-baselines3-cpu:1.4.1a0
type-check:
script:
- make type
pytest:
script:
- python --version
# MKL_THREADING_LAYER=GNU to avoid MKL_THREADING_LAYER=INTEL incompatibility error
- MKL_THREADING_LAYER=GNU make pytest
coverage: '/^TOTAL.+?(\d+\%)$/'
doc-build:
script:
- make doc
lint-check:
script:
- make check-codestyle
- make lint