Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Update README.md

Update README.md #21

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install pytest
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run tests
run: |
python -m pytest -v --tb=short test_public.py test_private.py