MAINT adapt for scikit-learn 1.6 #4798
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'test' | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- '*' | |
schedule: | |
- cron: "30 2 * * *" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
environment: [ | |
ci-py309-min-deps, | |
ci-py309-min-optional-deps, | |
ci-py312-latest-deps, | |
ci-py312-latest-optional-deps | |
] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.30.0 | |
environments: ${{ matrix.environment }} | |
# we can freeze the environment and manually bump the dependencies to the | |
# latest version time to time. | |
frozen: true | |
- name: Run tests | |
run: pixi run -e ${{ matrix.environment }} test -n 3 | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: skrub-data/skrub | |
check_run_nightly: | |
runs-on: ubuntu-latest | |
outputs: | |
run: ${{ github.event_name == 'schedule' || contains(steps.get_head_commit_message.outputs.COMMIT_MSG, '[deps nightly]') }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- id: get_head_commit_message | |
name: get head commit message | |
run: echo "COMMIT_MSG=$(git show -s --format=%s)" >> "$GITHUB_OUTPUT" | |
test_against_nightly: | |
needs: check_run_nightly | |
if: ${{ needs.check_run_nightly.outputs.run == 'true' }} | |
runs-on: ubuntu-latest | |
name: test against nighlty dependencies | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
name: 'Setup python' | |
- shell: bash {0} | |
run: | | |
dev_anaconda_url=https://pypi.anaconda.org/scientific-python-nightly-wheels/simple | |
pip install --pre --upgrade --timeout=60 --extra-index $dev_anaconda_url . | |
dev_arrow=https://pypi.fury.io/arrow-nightlies/ | |
pip install --extra-index-url $dev_arrow --prefer-binary --pre .[optional] | |
pip install .[test] | |
name: 'Install skrub and nightly dependencies' | |
- shell: bash {0} | |
run: pytest -vsl --cov=skrub --cov-report=xml skrub -n 3 | |
name: 'Run tests' |