Skip to content

Update CHANGELOG.md #12

Update CHANGELOG.md

Update CHANGELOG.md #12

Workflow file for this run

name: Python Tests
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Install the package in development mode
pip install -e .
# Install test dependencies
pip install .[test]
- name: Run tests
run: |
pytest -v