Skip to content

Update dependencies and new release #15

Update dependencies and new release

Update dependencies and new release #15

Workflow file for this run

name: Run Tests
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Poetry
run: pip install poetry
- name: Update dependencies
run: poetry install
- name: Run tests
run: |
poetry run pytest tests/