Skip to content

Commit b17bc1a

Browse files
committed
Added the fetch of models for shard 1
1 parent d418780 commit b17bc1a

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/run_tests_linux.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ jobs:
1919
- name: Checkout code
2020
uses: actions/checkout@v3
2121

22+
- name: Checkout submodules
23+
if: matrix.shard == 1
24+
run: git submodule update --init --recursive
25+
2226
- name: Setup environment
2327
uses: conda-incubator/setup-miniconda@v3
2428
with:
@@ -105,4 +109,4 @@ jobs:
105109
files: ./coverage.xml
106110
flags: unittests
107111
fail_ci_if_error: true
108-
verbose: true
112+
verbose: true

.github/workflows/run_tests_osx_win.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ jobs:
3333
- name: Checkout code
3434
uses: actions/checkout@v3
3535

36+
- name: Checkout submodules
37+
if: matrix.shard == 1
38+
run: git submodule update --init --recursive
39+
3640
- name: Setup environment
3741
uses: conda-incubator/setup-miniconda@v3
3842
with:

0 commit comments

Comments
 (0)