Skip to content

Automating release process #31

Automating release process

Automating release process #31

Workflow file for this run

name: pytest
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Upgrade pip
run: python3 -m pip install --upgrade pip
- name: Install base dependencies
run: pip install -r requirements.txt
- name: Install development dependencies
run: pip install -r requirements-dev.txt
- name: Run pytest
run: env PYTHONPATH=src pytest -vvv tests/