Skip to content

Test that smooth=True does not affect filter results in kf.compute #30

Test that smooth=True does not affect filter results in kf.compute

Test that smooth=True does not affect filter results in kf.compute #30

Workflow file for this run

name: Build & test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install
run: pip install -e .[dev,test,docs]
- name: Run tests
run: ./run-tests.sh