Skip to content

feat: second version of package #32

feat: second version of package

feat: second version of package #32

Workflow file for this run

---
name: Test
on:
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: windows-latest
env:
SOURCES_DIR: sources
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install poetry==1.1.7
poetry install
- name: pytest
run: poetry run pytest -vv