Skip to content

phenotype docs #261

phenotype docs

phenotype docs #261

Workflow file for this run

name: Run unit tests
on: push
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository 🛎️
uses: actions/checkout@v3
- name: Install Python 3.12 🐍
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Set up runner 📦
run: pip3 install black==24.10.0
- name: "Black: Code Formatting 👮🏽‍♀️"
run: black --diff . && black -v --check .
test_pipeline:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: install python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
cache: "pip"
- name: install requirements
run: pip install -r requirements.txt
- name: run tests
run: PYTHONPATH=. pytest