Skip to content

Commit d7e1451

Browse files
committed
Fix
Signed-off-by: Eric Kerfoot <[email protected]>
1 parent 4d88075 commit d7e1451

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/cicd_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616
group: cicd-tests-${{ github.event.pull_request.number || github.ref }}
1717
cancel-in-progress: true
1818

19-
# These jobs run the CICD tests, type checking, and testing packaging and documentation generation. These use the
19+
# These jobs run the CICD tests, type checking, and testing packaging and documentation generation. These use the
2020
# minimum supported versions of Python and PyTorch in many places hard-coded as literals, so when support is dropped
2121
# for a version it is important to go through all jobs and check the versions they use are correct.
2222

@@ -53,7 +53,7 @@ jobs:
5353
$(pwd)/runtests.sh --build --clean
5454
# Github actions have multiple cores, so parallelize pytype
5555
$(pwd)/runtests.sh --build --${{ matrix.opt }} -j $(nproc --all)
56-
56+
5757
min-dep: # Test with minumum dependencies installed for different OS, Python, and PyTorch combinations
5858
runs-on: ${{ matrix.os }}
5959
strategy:
@@ -315,4 +315,4 @@ jobs:
315315
if [[ $(grep -c "ERROR:" tmp_log) != 0 ]]; then echo "Found errors:"; grep "ERROR:" tmp_log; exit 1; fi
316316
sed '/WARNING.*pip/d' tmp_log > tmp_log1; mv tmp_log1 tmp_log # monai#7133
317317
if [[ $(grep -c "WARNING:" tmp_log) != 0 ]]; then echo "Found warnings:"; grep "WARNING:" tmp_log; exit 1; fi
318-
shell: bash
318+
shell: bash

0 commit comments

Comments
 (0)