File tree Expand file tree Collapse file tree 5 files changed +49
-1
lines changed Expand file tree Collapse file tree 5 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 59
59
run : |
60
60
curl --retry 5 -L -O "https://digraphs.github.io/Digraphs/${{ env.DIGRAPHS_LIB }}.tar.gz"
61
61
tar xf "${{ env.DIGRAPHS_LIB }}.tar.gz"
62
- - name : " Run tst/testall.g"
62
+ - name : " Run DigraphsTestInstall"
63
+ if : ${{ always() }}
63
64
uses : gap-actions/run-pkg-tests@v2
65
+ with :
66
+ GAP_TESTFILE : " tst/github_actions/install.g"
67
+ - name : " Run DigraphsTestStandard"
68
+ if : ${{ always() }}
69
+ uses : gap-actions/run-pkg-tests@v2
70
+ with :
71
+ GAP_TESTFILE : " tst/github_actions/standard.g"
72
+ - name : " Run DigraphsTestManualExamples"
73
+ if : ${{ always() }}
74
+ uses : gap-actions/run-pkg-tests@v2
75
+ with :
76
+ GAP_TESTFILE : " tst/github_actions/examples.g"
77
+ - name : " Run DigraphsTestExtreme"
78
+ if : ${{ always() }}
79
+ uses : gap-actions/run-pkg-tests@v2
80
+ with :
81
+ GAP_TESTFILE : " tst/github_actions/extreme.g"
64
82
- uses : gap-actions/process-coverage@v2
83
+ if : ${{ always() }}
65
84
- uses : codecov/codecov-action@v1
85
+ if : ${{ always() }}
Original file line number Diff line number Diff line change
1
+ LoadPackage(" digraphs" , false );;
2
+ if DIGRAPHS_RunTest(DigraphsTestManualExamples) then
3
+ QUIT_GAP(0 );
4
+ else
5
+ QUIT_GAP(1 );
6
+ fi ;
7
+ FORCE_QUIT_GAP(1 );
Original file line number Diff line number Diff line change
1
+ LoadPackage(" digraphs" , false );;
2
+ if DigraphsTestExtreme(rec (earlyStop := false )) then
3
+ QUIT_GAP(0 );
4
+ else
5
+ QUIT_GAP(1 );
6
+ fi ;
7
+ FORCE_QUIT_GAP(1 );
Original file line number Diff line number Diff line change
1
+ LoadPackage(" digraphs" , false );;
2
+ if DigraphsTestInstall() then
3
+ QUIT_GAP(0 );
4
+ else
5
+ QUIT_GAP(1 );
6
+ fi ;
7
+ FORCE_QUIT_GAP(1 );
Original file line number Diff line number Diff line change
1
+ LoadPackage(" digraphs" , false );;
2
+ if DigraphsTestStandard(rec (earlyStop := false )) then
3
+ QUIT_GAP(0 );
4
+ else
5
+ QUIT_GAP(1 );
6
+ fi ;
7
+ FORCE_QUIT_GAP(1 );
You can’t perform that action at this time.
0 commit comments