mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-06-25 02:50:59 +00:00
* Test gitlab-ci * Try different image * Add pytest and doc build * Fix command * Fix image used for CI * Seperate pytest builds * Fix weird seg fault in docker image due to FakeImageEnv * Fix make command * [ci skip] Add space in the badges * Fix CI failures * Re-install opencv * Use opencv-headless * Test with new docker image
14 lines
269 B
YAML
14 lines
269 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
|