Skip to content

Update pyproject.toml #7

Update pyproject.toml

Update pyproject.toml #7

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.10',3.11.9']
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
pip install -r requirements.txt
- name: Install package in development mode
run: |
pip install -e .
- name: Run tests
run: |
python -m pytest tests/ -v