Skip to content

Update README.

Update README. #4

Workflow file for this run

# .github/workflows/app.yaml
name: PyTest
on: [push, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install pip and run tests
run: |
python -m venv --copies --upgrade-deps venv
. venv/bin/activate
python -m pip install --upgrade pip wheel .[dev]
pytest