File tree Expand file tree Collapse file tree 1 file changed +3
-15
lines changed
Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -54,22 +54,10 @@ jobs:
5454 run : mix deps.get
5555 - name : Compile deps
5656 run : mix deps.compile
57- - name : Compile native code ahead of time
57+ - name : Compile native code
5858 run : mix compile
59- - name : Find SEGFAULT test
60- run : |
61- grep -n "test \"" test/explorer/data_frame_test.exs | head -80 | while IFS=: read line rest; do
62- echo "=== Line $line: $rest ==="
63- timeout 30 mix test test/explorer/data_frame_test.exs:$line --max-failures 1 2>&1 | tail -3
64- code=$?
65- if [ $code -eq 124 ] || [ $code -eq 139 ]; then
66- echo "::error::CRASH at line $line (exit $code)"
67- fi
68- done
69- env :
70- MIX_ENV : test
71- # - name: Run tests
72- # run: mix test --warnings-as-errors
59+ - name : Run tests
60+ run : mix test --warnings-as-errors
7361 - name : Run property tests
7462 run : mix test --only property --warnings-as-errors
7563 - name : Compile once again but without optional deps
You can’t perform that action at this time.
0 commit comments