[b9e282]: / .github / workflows / internal_tools.yml

Download this file

24 lines (21 with data), 640 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Install internal tools Python packages & run test suite
on:
pull_request:
branches: [main]
paths:
- internal/infra-bionemo/**
jobs:
infra-bionemo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: "recursive"
- uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip"
- run: pip install -r requirements-dev.txt -r requirements-test.txt
- run: pip install internal/infra-bionemo
- run: cd internal/infra-bionemo && pytest -v --cov=infra_bionemo --cov-report=term .