add reverse charge testfile #18
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: Build CTAN | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: check | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install TeX Live | |
uses: zauguin/install-texlive@v3 | |
with: | |
package_file: .tl_packages | |
- run: l3build ctan | |
- run: bash validate_zugferd.sh build/doc/DEMO*.pdf | |
- name: Upload build artifats | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zugferd-ctan | |
path: "build/distrib/ctan/zugferd/" |