Skip to content

[python-package] make scikit-learn estimator tags compatible with scikit-learn>=1.6.0dev #6766

[python-package] make scikit-learn estimator tags compatible with scikit-learn>=1.6.0dev

[python-package] make scikit-learn estimator tags compatible with scikit-learn>=1.6.0dev #6766

Workflow file for this run

name: Optional checks
on:
pull_request:
branches:
- master
jobs:
all-optional-checks-successful:
timeout-minutes: 120
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 5
submodules: false
- name: Check that all tests succeeded
run: |
workflows=(
"R valgrind tests;r-valgrind"
)
for i in "${workflows[@]}"; do
workflow_name=${i%;*}
trigger_phrase=${i#*;}
python "$GITHUB_WORKSPACE/.ci/get-workflow-status.py" "$trigger_phrase" \
|| { echo "The last reported status from workflow \"$workflow_name\" is failure. Commit fixes and rerun the workflow."; \
exit 1; }
done