Skip to content

Remove whitespace

Remove whitespace #111

Workflow file for this run

name: pytest
on:
- push
- pull_request
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: pip
cache-dependency-path: "**/pyproject.toml"
- name: Install Python dependencies
run: pip install -e .
- name: Run tests
run: pytest