Drop Python 3.8 from workflows, run on 3.11 (#3228) #4648
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: XGBoost Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
max-parallel: 4 | |
fail-fast: false | |
matrix: | |
python-version: ['3.11'] | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install other dependencies | |
run: | | |
pip install "Cython<3.0" | |
pip install . \ | |
-r requirements/requirements-test.txt \ | |
-r requirements/requirements-rotbaum.txt \ | |
-r requirements/requirements-rotbaum-extra-methods.txt | |
- name: Test with pytest | |
run: | | |
pytest -n2 --timeout 120 --doctest-modules test/ext/rotbaum |