We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4794767 commit 3552284Copy full SHA for 3552284
1 file changed
.github/workflows/CI.yml
@@ -18,11 +18,12 @@ concurrency:
18
jobs:
19
# The CI test job
20
test:
21
- name: ${{ matrix.gap-branch }}
+ name: "${{ matrix.gap-branch }} (only-needed: ${{ matrix.only-needed }})"
22
runs-on: ubuntu-latest
23
strategy:
24
fail-fast: false
25
matrix:
26
+ only-needed: [ "true", "false" ] # need to split it to avoid disk storage issues
27
gap-branch:
28
- master
29
- stable-4.15
@@ -39,10 +40,9 @@ jobs:
39
40
with:
41
GAPBRANCH: ${{ matrix.gap-branch }}
42
- uses: gap-actions/build-pkg@v1
- - uses: gap-actions/run-pkg-tests@v3
43
- uses: gap-actions/run-pkg-tests@v3
44
45
- only-needed: true
+ only-needed: ${{ matrix.only-needed }}
46
- uses: gap-actions/process-coverage@v2
47
- uses: codecov/codecov-action@v5
48
0 commit comments