document fullclip option #108
This file contains hidden or 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
| on: [push] | |
| jobs: | |
| ubuntu16: | |
| runs-on: ubuntu-latest | |
| name: Test on Ubuntu 16.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Compile and test | |
| uses: ./.github/actions/ubuntu16 | |
| ubuntu18: | |
| runs-on: ubuntu-latest | |
| name: Test on Ubuntu 18.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Compile and test | |
| uses: ./.github/actions/ubuntu18 | |
| ubuntu20: | |
| runs-on: ubuntu-latest | |
| name: Test on Ubuntu 20.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Compile and test | |
| uses: ./.github/actions/ubuntu20 | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| path: | | |
| graphicscache.tar.gz | |
| graphicscache.pdf | |
| graphicscache.sty | |
| windows_miktex: | |
| runs-on: windows-2022 | |
| name: Test on Windows using MikTeX | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Compile and test | |
| uses: ./.github/actions/windows | |
| windows_texlive: | |
| runs-on: windows-2022 | |
| name: Test on Windows using TeX Live | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Compile and test | |
| uses: ./.github/actions/windows_texlive | |