Bump 3rdparty/Megatron-LM from 0e85db5
to 2a9793d
(#675)
#1584
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Install internal tools Python packages & run test suite | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
merge_group: | |
types: [checks_requested] | |
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 . |