Skip to content

added python badge

added python badge #41

Workflow file for this run

name: Run Tests On Push
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3.7.17
uses: actions/setup-python@v1
with:
python-version: 3.7.17
- name: Install dependencies
run: |
pip install -r requirements.txt
echo requirements installed
- name: Run tests
run: |
cd tests
pip install pytest
pytest