Skip to content

chore: Update Python version to 3.8 and dependencies in tests.yaml an… #177

chore: Update Python version to 3.8 and dependencies in tests.yaml an…

chore: Update Python version to 3.8 and dependencies in tests.yaml an… #177

Workflow file for this run

name: Unit-Tests
on: [push]
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install pytest pytest-github-actions-annotate-failures
- name: Install package
run: |
pip install .
- name: Test with pytest
run: |
pytest