Skip to content

[pre-commit.ci] pre-commit autoupdate #1980

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #1980

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
test:
name: >-
Test ${{ matrix.os }}-python${{ matrix.python-version
}}-dask${{ matrix.dask-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12', '3.13']
os: ['windows-latest', 'macos-latest', 'ubuntu-latest']
dask-version: [ 'latest' ]
include:
- os: ubuntu-latest
python-version: '3.11'
dask-version: '2025.2.0'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Pin dask version
if: matrix.dask-version != 'latest'
run: pip install dask==${{ matrix.dask-version }}
- name: Test with tox
run: tox --conf tox.ini
- name: Upload code coverage
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./coverage.xml
fail_ci_if_error: true