MNT delete trailing note in version guide (#1346) #296
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: build-test | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
- "release/**" | |
workflow_dispatch: | |
concurrency: | |
# this ensures after each commit the old jobs are cancelled and the new ones | |
# run instead. | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
all-deps: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python: ["3.8", "3.9", "3.10", "3.11"] | |
requirementsPinned: ["false"] | |
uses: ./.github/workflows/test-all-deps.yml | |
with: | |
os: ${{ matrix.os }} | |
python: ${{ matrix.python }} | |
requirementsPinned: ${{ matrix.requirementsPinned }} | |
codeCovPython: "3.11" | |
minimal-deps: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python: ["3.8", "3.9", "3.10", "3.11"] | |
uses: ./.github/workflows/test-minimal-deps.yml | |
with: | |
os: ${{ matrix.os }} | |
python: ${{ matrix.python }} | |
codeCovPython: "3.11" | |
other-ml: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python: ["3.11"] | |
mlpackage: [lightgbm, xgboost, tensorflow, pytorch] | |
uses: ./.github/workflows/test-other-ml.yml | |
with: | |
os: ${{ matrix.os }} | |
python: ${{ matrix.python }} | |
mlpackage: ${{ matrix.mlpackage }} | |
linting: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python: ["3.11"] | |
uses: ./.github/workflows/linting.yml | |
with: | |
os: ${{ matrix.os }} | |
python: ${{ matrix.python }} |