Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,27 @@ on:

jobs:
test:
name: latex ${{ matrix.use-latex }}
name: package ${{ matrix.package }}, latex ${{ matrix.use-latex }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
use-latex:
- true
- false
package:
- gap-actions/ActionTestGAPDocPackage
- gap-actions/ActionTestOldDocPackage
exclude:
- package: gap-actions/ActionTestOldDocPackage
use-latex: false

steps:
# the order of the checkout actions is important because all contents of
# the target folder of the checkout action is removed
- uses: actions/checkout@v5
with:
repository: gap-packages/example
repository: ${{ matrix.package }}
- uses: actions/checkout@v5
with:
path: this-action/
Expand Down