Skip to content

WIP: Try older poetry version for Python 3.7 support #48

WIP: Try older poetry version for Python 3.7 support

WIP: Try older poetry version for Python 3.7 support #48

Workflow file for this run

name: Build
on:
pull_request:
branches:
- v1
push:
branches:
- test-ci-v1
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
fail-fast: false
matrix:
python-version:
- '3.11'
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
- name: Install dependencies
run: |
poetry config virtualenvs.create false
poetry install
- name: Run tests
run: python -m pytest tests