Skip to content

feat: reintegrate workflow sub package as a part of the core #219

feat: reintegrate workflow sub package as a part of the core

feat: reintegrate workflow sub package as a part of the core #219

Workflow file for this run

name: Test with py.test
on:
pull_request:
merge_group:
workflow_call:
push:
branches:
- main
jobs:
test:
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- run: pip install ".[test]"
- run: pytest --doctest-modules --import-mode importlib