Skip to content

Bump actions/setup-python from 4 to 5 (#12) #5

Bump actions/setup-python from 4 to 5 (#12)

Bump actions/setup-python from 4 to 5 (#12) #5

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run tests
run: poetry run pytest