Skip to content

Split tests, test against custom extension #45

Split tests, test against custom extension

Split tests, test against custom extension #45

Workflow file for this run

name: ci
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [ "3.8", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install .[test]
pip install -e test/test_éxt
- name: Test
run: pytest -v -s