Skip to content

Add Python 3.12 Support and Update Dependencies #342

Add Python 3.12 Support and Update Dependencies

Add Python 3.12 Support and Update Dependencies #342

Workflow file for this run

on:
pull_request:
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install python dependencies
run: poetry install
- name: Run lint
run: make lint
- name: Run tests
run: make test