Skip to content

Bump packaging from 24.1 to 24.2 in the dev-dependencies group #17

Bump packaging from 24.1 to 24.2 in the dev-dependencies group

Bump packaging from 24.1 to 24.2 in the dev-dependencies group #17

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: poetry install
- name: Run linting
run: make lint
- name: Run test suite
run: make test