Skip to content

chore(pip deps): update resample requirement from ~=1.8.0 to ~=1.9.0 #1952

chore(pip deps): update resample requirement from ~=1.8.0 to ~=1.9.0

chore(pip deps): update resample requirement from ~=1.8.0 to ~=1.9.0 #1952

Workflow file for this run

name: CI
on:
push:
branches:
- master
- py2-legacy
pull_request:
# Run daily at 0:01 UTC
schedule:
- cron: '1 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python -m pip install .[test]
- name: Test with pytest
run: pytest tests
- name: Report coverage with Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
flags: unittests-${{ matrix.python-version }}