Skip to content

Bump pypa/gh-action-pypi-publish from 1.11.0 to 1.12.2 #75

Bump pypa/gh-action-pypi-publish from 1.11.0 to 1.12.2

Bump pypa/gh-action-pypi-publish from 1.11.0 to 1.12.2 #75

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/