Skip to content

convert tsfeatures lib to nbdev framework #5

convert tsfeatures lib to nbdev framework

convert tsfeatures lib to nbdev framework #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
defaults:
run:
shell: bash -l {0}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
windows-tests:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Clone repo
uses: actions/checkout@v3
- name: Set up environment
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install the library
run: pip install ".[dev]"
- name: Run tests
run: nbdev_test --do_print --timing --flags 'matplotlib polars pyarrow scipy'