Skip to content

Modernize project structure #1

Modernize project structure

Modernize project structure #1

Workflow file for this run

name: pytest
on:
push:
branches:
- main
tags-ignore:
- '**'
pull_request:
jobs:
tests:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install development version
run: pip install -e .[dev]
- name: Run pytest
run: pytest -vv