Skip to content

Prepare next dev iteration #182

Prepare next dev iteration

Prepare next dev iteration #182

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: |
python -m pip install --upgrade pip
pipx install poetry==1.8.0
- run: poetry install
- run: poetry run pylama
- run: poetry run py.test