Skip to content

Tests

Tests #1007

Workflow file for this run

name: Tests
on:
workflow_run:
workflows:
- "Lint"
types:
- completed
jobs:
unittests:
name: Unit Tests
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [ '3.10' ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install pipenv
pipenv lock -r --dev > requirements.txt
pip install -r requirements.txt
- name: Run Tests
run: make test