Skip to content

Merge pull request #32 from geronimo-iia/dependabot/pip/development-d… #77

Merge pull request #32 from geronimo-iia/dependabot/pip/development-d…

Merge pull request #32 from geronimo-iia/dependabot/pip/development-d… #77

Workflow file for this run

name: Python package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
POETRY_VIRTUALENVS_CREATE: false
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9.16, 3.10.11, 3.11.3]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: make install
- name: Check Python package
run: make check
- name: Test Python package
run: make test