Skip to content

Documentation Improvements regarding JOSS Reviews #116

Documentation Improvements regarding JOSS Reviews

Documentation Improvements regarding JOSS Reviews #116

Workflow file for this run

name: tests
on: [pull_request, push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tests]
- name: Run All Tests
working-directory: ./tests
run: pytest