File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,29 +19,32 @@ concurrency:
1919jobs :
2020 # The CI test job
2121 test :
22- name : ${{ matrix.gap-version }}
22+ name : ${{ matrix.gap-branch }}
2323 runs-on : ubuntu-latest
2424 strategy :
2525 fail-fast : false
2626 matrix :
27- gap-version :
28- - ' devel' # current GAP development version from git
29- - ' latest' # latest GAP release
30- - ' minimal' # oldest GAP release supported by this package
27+ gap-branch :
28+ - master
29+ - stable-4.16
30+ - stable-4.15
31+ - stable-4.14
32+ - stable-4.13
33+ - stable-4.12
34+ # - stable-4.11
3135
3236 steps :
3337 - uses : actions/checkout@v6
34- - uses : gap-actions/setup-gap@v3
38+ - uses : gap-actions/setup-gap@v2
3539 with :
36- gap-version : ${{ matrix.gap-version }}
37- - uses : gap-actions/build-pkg@v3
40+ GAP_PKGS_TO_BUILD : " io nq profiling"
41+ GAPBRANCH : ${{ matrix.gap-branch }}
42+ - uses : gap-actions/build-pkg@v1
43+ - uses : gap-actions/run-pkg-tests@v3
44+ - uses : gap-actions/run-pkg-tests@v3
3845 with :
39- extra-pkgs : " io nq profiling"
40- - uses : gap-actions/run-pkg-tests@v4
41- - uses : gap-actions/run-pkg-tests@v4
42- with :
43- mode : onlyneeded
44- - uses : gap-actions/process-coverage@v3
46+ only-needed : true
47+ - uses : gap-actions/process-coverage@v2
4548 - uses : codecov/codecov-action@v6
4649 with :
4750 token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ PackageDoc := rec(
123123),
124124
125125Dependencies := rec (
126- GAP := " >=4.12 " ,
126+ GAP := " >=4.10.1 " ,
127127 NeededOtherPackages := [ ] ,
128128 SuggestedOtherPackages := [ [ " curlInterface" , " >= 2.3.0" ] ] ,
129129 ExternalConditions := [ ]
You can’t perform that action at this time.
0 commit comments