Skip to content

Whoops, data files were being ignored by .gitignore after move. #121

Whoops, data files were being ignored by .gitignore after move.

Whoops, data files were being ignored by .gitignore after move. #121

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