Skip to content

build(deps-dev): bump the development-dependencies group across 1 directory with 7 updates #96

build(deps-dev): bump the development-dependencies group across 1 directory with 7 updates

build(deps-dev): bump the development-dependencies group across 1 directory with 7 updates #96

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