Skip to content

docs: Update version of the app. #91

docs: Update version of the app.

docs: Update version of the app. #91

Workflow file for this run

name: Testing Python Package
on: [push]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Run tests
run: |
pipenv run pytest