Skip to content

ci(mergify): upgrade configuration to current format #128

ci(mergify): upgrade configuration to current format

ci(mergify): upgrade configuration to current format #128

Workflow file for this run

name: Continuous Integration
permissions: read-all
on:
pull_request:
branches:
- main
- devs/**
jobs:
test:
name: "Test with Python ${{ matrix.python-version }}"
timeout-minutes: 5
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: "${{ matrix.python-version }}"
- run: |
pip install -r requirements-poetry.txt
poetry install --sync
poetry run poe linters
poetry run poe test
poetry build