Skip to content

Add precomputed tests #16

Add precomputed tests

Add precomputed tests #16

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.3'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip freeze > requirements.txt
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest
pytest