We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec91a99 commit 26b4957Copy full SHA for 26b4957
1 file changed
.github/workflows/CI.yml
@@ -9,21 +9,27 @@ on:
9
10
jobs:
11
test:
12
- name: latex ${{ matrix.use-latex }}
+ name: package ${{ matrix.package }}, latex ${{ matrix.use-latex }}
13
runs-on: ubuntu-latest
14
strategy:
15
fail-fast: false
16
matrix:
17
use-latex:
18
- true
19
- false
20
+ package:
21
+ - gap-actions/ActionTestGAPDocPackage
22
+ - gap-actions/ActionTestOldDocPackage
23
+ exclude:
24
+ - package: gap-actions/ActionTestOldDocPackage
25
+ use-latex: false
26
27
steps:
28
# the order of the checkout actions is important because all contents of
29
# the target folder of the checkout action is removed
30
- uses: actions/checkout@v5
31
with:
- repository: gap-packages/example
32
+ repository: ${{ matrix.package }}
33
34
35
path: this-action/
0 commit comments