Skip to content

feat: update python versioning in devcontainer to 3.12 #9

feat: update python versioning in devcontainer to 3.12

feat: update python versioning in devcontainer to 3.12 #9

Workflow file for this run

name: Python Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run unit tests
run: poetry run pytest