Skip to content

Релиз v2.2.0

Релиз v2.2.0 #656

Workflow file for this run

name: Unit tests
on:
pull_request:
branches:
- main
jobs:
unit_tests:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11", "3.12" ]
steps:
- name: Checkout repository.
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}.
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies.
run: pip install -r requirements-dev.txt
- name: Test with pytest.
run: pytest -vv