Skip to content

Fix tables formatting in README.md #36

Fix tables formatting in README.md

Fix tables formatting in README.md #36

Workflow file for this run

# Run all unit tests
name: Pytest
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
verify:
name: Running unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install Pytest
run: |
python -m pip install pytest
- name: Running Pytest
run: |
pytest ./test/