Skip to content

Update README.md

Update README.md #89

Workflow file for this run

name: Run Python Tests
on:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
~/.cache/pip
~/.conda
key: ${{ runner.os }}-pip-conda-${{ hashFiles('requirements.txt') }}
- name: Install dependencies
run: |
pip install -r requirements.txt
env:
PIP_CACHE_DIR: ~/.cache/pip
- name: Run tests
run: python3 -m pytest