Skip to content

Merge pull request #8 from ParallelDots/update-internal-logic #15

Merge pull request #8 from ParallelDots/update-internal-logic

Merge pull request #8 from ParallelDots/update-internal-logic #15

Workflow file for this run

name: Run Tests
on:
push:
branches:
- "**"
pull_request:
branches: main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python -m unittest