Skip to content

Update dependencies and test with Python 3.12 #124

Update dependencies and test with Python 3.12

Update dependencies and test with Python 3.12 #124

Workflow file for this run

name: main
on: [push]
jobs:
check-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.12']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install --upgrade pip poetry
- run: poetry install
- run: poetry run make check-test
check-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: pip install --upgrade pip poetry
- run: poetry install
- run: poetry run make check-lint
- run: poetry run make check-format
- run: poetry run poetry build