Skip to content

convert tsfeatures lib to nbdev framework #20

convert tsfeatures lib to nbdev framework

convert tsfeatures lib to nbdev framework #20

Workflow file for this run

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