Skip to content

Install dependencies #4

Install dependencies

Install dependencies #4

Workflow file for this run

name: Run Pytest on Push
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install trimmomatic flash numpy cython jinja2 tbb=2020.2 pyparsing=2.3.1 scipy matplotlib plotly pandas
pip install pytest pytest-cov
pip install .
- name: Run Pytest
run: |
pytest tests