Skip to content

Commit 3552284

Browse files
authored
Split tests with and without OnlyNeeded... (#36)
1 parent 4794767 commit 3552284

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ concurrency:
1818
jobs:
1919
# The CI test job
2020
test:
21-
name: ${{ matrix.gap-branch }}
21+
name: "${{ matrix.gap-branch }} (only-needed: ${{ matrix.only-needed }})"
2222
runs-on: ubuntu-latest
2323
strategy:
2424
fail-fast: false
2525
matrix:
26+
only-needed: [ "true", "false" ] # need to split it to avoid disk storage issues
2627
gap-branch:
2728
- master
2829
- stable-4.15
@@ -39,10 +40,9 @@ jobs:
3940
with:
4041
GAPBRANCH: ${{ matrix.gap-branch }}
4142
- uses: gap-actions/build-pkg@v1
42-
- uses: gap-actions/run-pkg-tests@v3
4343
- uses: gap-actions/run-pkg-tests@v3
4444
with:
45-
only-needed: true
45+
only-needed: ${{ matrix.only-needed }}
4646
- uses: gap-actions/process-coverage@v2
4747
- uses: codecov/codecov-action@v5
4848
with:

0 commit comments

Comments
 (0)