File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 94
94
. venv/bin/activate
95
95
pip install -e .
96
96
python tests/primer/__main__.py run --type=main --batches=${{ matrix.batches }} --batchIdx=${{ matrix.batchIdx }} 2>warnings.txt
97
+ - name : Echo warnings
98
+ if : success() || failure()
99
+ run : |
97
100
WARNINGS=$(head -c 65000 < warnings.txt)
98
101
if [[ $WARNINGS ]]
99
102
then echo "::warning ::$WARNINGS"
Original file line number Diff line number Diff line change @@ -159,6 +159,9 @@ jobs:
159
159
. venv/bin/activate
160
160
pip install -e .
161
161
python tests/primer/__main__.py run --type=pr --batches=${{ matrix.batches }} --batchIdx=${{ matrix.batchIdx }} 2>warnings.txt
162
+ - name : Echo warnings
163
+ if : success() || failure()
164
+ run : |
162
165
WARNINGS=$(head -c 65000 < warnings.txt)
163
166
if [[ $WARNINGS ]]
164
167
then echo "::warning ::$WARNINGS"
You can’t perform that action at this time.
0 commit comments