Skip to content

Add poetry instead of manual management (#21) #127

Add poetry instead of manual management (#21)

Add poetry instead of manual management (#21) #127

Workflow file for this run

name: tox
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.8.3
- name: Install tox
run: pipx install tox
- name: Test with tox
run: tox