Skip to content

Merge branch 'develop' into feature/update-readme #86

Merge branch 'develop' into feature/update-readme

Merge branch 'develop' into feature/update-readme #86

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