Files
lightgbm-org--lightgbm/.ci/build-docs.sh
T
2026-07-13 13:27:18 +08:00

14 lines
201 B
Bash
Executable File

#!/bin/bash
set -e -E -u -o pipefail
conda env create \
--name test-env \
--file ./docs/env.yml \
|| exit 1
# shellcheck disable=SC1091
source activate test-env
make -C docs html || exit 1