Skip to content

merged with main branch #135

merged with main branch

merged with main branch #135

Workflow file for this run

name: Pytest tests
on:
push:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: [3.11]
env:
POETRY_VIRTUALENVS_CREATE: false
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
python3 -m pip install --upgrade pip
pip install poetry
- name: Display Poetry version
run: |
poetry --version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
poetry install
- name: Run pytest
run: |
poetry run pytest -v tests