Skip to content

Refa/update dependencies and cleanup #87

Refa/update dependencies and cleanup

Refa/update dependencies and cleanup #87

Workflow file for this run

name: pytest
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v2
with:
python-version: 3.10.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-test.txt
- name: Run tests with pytest
run: pytest