Skip to content

[ENH] summer mode response update #70

[ENH] summer mode response update

[ENH] summer mode response update #70

Workflow file for this run

name: Python testing
on:
push:
branches:
- main
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install poetry and dependencies
run: |
python -m pip install --upgrade pip
pip install poetry==1.8.2
poetry install -v --no-root
- name: Test with pytest
run: |
poetry install --with dev
poetry run pytest