Skip to content

Chore/add test config #2

Chore/add test config

Chore/add test config #2

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest hypothesis
- name: Run tests in multiple folders
run: |
pytest test/ tests/ -v