Skip to content

WIP: update CI config to test poetry CI issues without impacting v1 b… #46

WIP: update CI config to test poetry CI issues without impacting v1 b…

WIP: update CI config to test poetry CI issues without impacting v1 b… #46

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.1.15
- name: Install dependencies
run: |
poetry config virtualenvs.create false
poetry install
- name: Run tests
run: python -m pytest tests