File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
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
You can’t perform that action at this time.
0 commit comments