ci(mergify): upgrade configuration to current format #113
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |