Skip to content

Update pyproject.toml #22

Update pyproject.toml

Update pyproject.toml #22

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- '**'
workflow_dispatch:
permissions:
contents: read
jobs:
run-python-test:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.14]
steps:
- uses: actions/checkout@v4
- name: set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install python dependencies
run: |
python -m pip install --upgrade pip
pip install '.[dev]'
- name: run tests
run: python -m pytest tests/