mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-07-01 03:45:11 +00:00
21 lines
386 B
YAML
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
|