Skip to content

packaging: revert to requirements files #13

packaging: revert to requirements files

packaging: revert to requirements files #13

Workflow file for this run

name: PR Check
on:
- pull_request
- workflow_dispatch
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
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: |
pip install .[dev]
- name: Run Tests
run: |
python -m pytest