Skip to content

Commit 0978ecf

Browse files
committed
use working-directory
Signed-off-by: Peter St. John <pstjohn@nvidia.com>
1 parent 0f05ff6 commit 0978ecf

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/bionemo-recipes.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
strategy:
6363
matrix:
6464
dir: ${{ fromJson(needs.changed-dirs.outputs.dirs) }}
65+
fail-fast: false
6566

6667
steps:
6768
- name: Checkout repository
@@ -71,16 +72,13 @@ jobs:
7172
sparse-checkout: '${{ matrix.dir }}'
7273
sparse-checkout-cone-mode: false
7374

74-
- run: |
75-
shopt -s dotglob
76-
mv ${matrix.dir}/* .
77-
rm -rf ${matrix.dir}
78-
7975
- name: Install uv
8076
uses: astral-sh/setup-uv@v6
8177

8278
- name: Install dependencies
79+
working-directory: ${{ matrix.dir }}
8380
run: uv pip install -r requirements.txt
8481

8582
- name: Run tests
83+
working-directory: ${{ matrix.dir }}
8684
run: pytest -v .

.github/workflows/framework-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
!recipes/**
4040
!**.md
4141
!.github/**
42-
.github/workflows/unit-tests.yml
42+
.github/workflows/framework-unit-tests.yml
4343
4444
- name: Show output
4545
run: |

0 commit comments

Comments
 (0)