Skip to content

Release of v2.0.3

Release of v2.0.3 #545

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
types: [opened, synchronize, edited]
push:
branches:
- 'main'
- 'develop'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest