Skip to content

feat!: add editable rowname col to annotate + version fixes #54

feat!: add editable rowname col to annotate + version fixes

feat!: add editable rowname col to annotate + version fixes #54

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- name: Checkout this repo
uses: actions/checkout@master
- name: Checkout the latest biotea-box
uses: actions/checkout@master
with:
repository: CMA-Lab/bioTEA-box
path: ./box
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and bioTEA
working-directory: .
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -e .
- name: Build the latest box
working-directory: ./box
run: docker build -t cmalabscience/biotea-box:bleeding .
- name: Test with pytest
working-directory: .
run: |
pytest