Skip to content

Update tool-Docker-action to v2.1.0 #1715

Update tool-Docker-action to v2.1.0

Update tool-Docker-action to v2.1.0 #1715

Workflow file for this run

---
name: Tests
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8.17
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install biopython==1.82 pathos pytest psutil six matplotlib regex
- name: Run Unit Tests
run: |
pytest -v -s test/unit
- name: Run Integration Tests
run: |
pytest -v -s test/integration