Skip to content

Bump the gh-actions group across 1 directory with 7 updates #2486

Bump the gh-actions group across 1 directory with 7 updates

Bump the gh-actions group across 1 directory with 7 updates #2486

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
paths-ignore:
- ".github/workflows/*-release.yaml"
- "asv_bench/**"
- "doc/**"
schedule:
- cron: "0 0 * * *"
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: ${{ matrix.python-version }}-build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/dev-requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- run: |
python -m pip install -e .[dev]
python -m pip list
- name: Running Tests
run: |
pytest --verbose --cov=. --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
file: ./coverage.xml
fail_ci_if_error: false
test-upstream:
name: ${{ matrix.python-version }}-dev-build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: |
python -m pip install -e .[dev]
python -m pip install --upgrade \
git+https://github.com/dask/dask \
git+https://github.com/pydata/xarray
python -m pip list
- name: Running Tests
run: |
py.test --verbose --cov=.