Skip to content

chore: build system #149

chore: build system

chore: build system #149

Workflow file for this run

name: CI
on: [workflow_dispatch, pull_request, push]
jobs:
nbdev-test:
runs-on: ubuntu-latest
steps: [uses: fastai/workflows/nbdev-ci@master]
python-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install -e ".[dev]"
- name: Test with pytest
run: |
pytest