Skip to content

Update GH Actions

Update GH Actions #3

Workflow file for this run

name: Execute PyTest
on: [push]
jobs:
PyTest:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.8.3"
- name: Set up poetry environment
run: poetry install --only test
- name: Run pytest
run: poetry run pytest