Skip to content

Default changed to normalization of all files. This corrects the conf… #37

Default changed to normalization of all files. This corrects the conf…

Default changed to normalization of all files. This corrects the conf… #37

Workflow file for this run

name: pytest
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[docs,test]
- name: Test with pytest
run: |
pytest .[test]