DOC rework the over-sampling section of the user guide #76
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: 'tests' | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
environment: [ | |
ci-py310-min-dependencies, | |
ci-py310-min-optional-dependencies, | |
ci-py310-min-keras, | |
ci-py310-min-tensorflow, | |
ci-py311-sklearn-1-4, | |
ci-py311-sklearn-1-5, | |
ci-py311-latest-keras, | |
ci-py311-latest-tensorflow, | |
ci-py313-latest-dependencies, | |
ci-py313-latest-optional-dependencies, | |
] | |
exclude: | |
- os: windows-latest | |
environment: ci-py310-min-keras | |
- os: windows-latest | |
environment: ci-py310-min-tensorflow | |
- os: windows-latest | |
environment: ci-py311-latest-keras | |
- os: windows-latest | |
environment: ci-py311-latest-tensorflow | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.39.2 | |
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 }} tests -n 3 | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: scikit-learn-contrib/imbalanced-learn |