require currfile only if listing is enabled #97
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
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@v3 | |
with: | |
path: | | |
graphicscache.tar.gz | |
graphicscache.pdf | |
graphicscache.sty | |
windows_miktex: | |
runs-on: windows-2019 | |
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-2019 | |
name: Test on Windows using TeX Live | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Compile and test | |
uses: ./.github/actions/windows_texlive | |