Skip to content

Refactor top-level functions into a utils module and begin adding tes… #35

Refactor top-level functions into a utils module and begin adding tes…

Refactor top-level functions into a utils module and begin adding tes… #35

Workflow file for this run

name: CI tests
on:
pull_request:
push:
branches:
- Live
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
cache-dependency-path: |
requirements*.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --all-extras
- name: Run tests
run: |
which python
pip freeze
poetry run pytest