Skip to content

docs: add ci badge for tests, mention how to install on an unsupport … #3

docs: add ci badge for tests, mention how to install on an unsupport …

docs: add ci badge for tests, mention how to install on an unsupport … #3

Workflow file for this run

name: Run unit tests
on:
push:
branches:
- main
jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
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
pip install .
pip install .[dev]
- name: Run Pytest
run: |
python -m pytest tests/ -s --junitxml=path