Skip to content

Merge pull request #220 from claudiushaag/patch-1 #183

Merge pull request #220 from claudiushaag/patch-1

Merge pull request #220 from claudiushaag/patch-1 #183

Workflow file for this run

name: Pytest Checks
on:
push:
branches:
- develop
# pull_request:
# branches:
# - main
# - develop
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install --no-interaction
- name: Run Tests
run: |
poetry run pytest