mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-07-28 20:11:31 +00:00
* Add auto formatting with black and isort * Reformat code * Ignore typing errors * Add note about line length * Add minimum version for isort * Add commit-checks * Update docker image * Fixed lost import (during last merge) * Fix opencv dependency
19 lines
331 B
YAML
19 lines
331 B
YAML
image: stablebaselines/stable-baselines3-cpu:0.8.0a4
|
|
|
|
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:
|
|
- make check-codestyle
|
|
- make lint
|