Skip to content

Commit ccae5d3

Browse files
committed
Merge branch 'stable-1.4'
2 parents bc55fe2 + 0ab5f19 commit ccae5d3

File tree

5 files changed

+49
-1
lines changed

5 files changed

+49
-1
lines changed

.github/workflows/gap.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,27 @@ jobs:
5959
run: |
6060
curl --retry 5 -L -O "https://digraphs.github.io/Digraphs/${{ env.DIGRAPHS_LIB }}.tar.gz"
6161
tar xf "${{ env.DIGRAPHS_LIB }}.tar.gz"
62-
- name: "Run tst/testall.g"
62+
- name: "Run DigraphsTestInstall"
63+
if: ${{ always() }}
6364
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"
6482
- uses: gap-actions/process-coverage@v2
83+
if: ${{ always() }}
6584
- uses: codecov/codecov-action@v1
85+
if: ${{ always() }}

tst/github_actions/examples.g

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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);

tst/github_actions/extreme.g

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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);

tst/github_actions/install.g

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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);

tst/github_actions/standard.g

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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);

0 commit comments

Comments
 (0)