do not require xcolor with specific options #97
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TeXLive | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: TeXLive ${{matrix.texlive}} | |
runs-on: ubuntu-latest | |
container: texlive/texlive:${{matrix.texlive}} | |
strategy: | |
fail-fast: true | |
matrix: | |
texlive: | |
- TL2022-historic | |
- TL2023-historic | |
- latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build CTAN package | |
run: | | |
l3build ctan | |
- name: Upload package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rebuttal-texlive-${{matrix.texlive}} | |
path: | | |
build/distrib/ctan/rebuttal/ |