-
Notifications
You must be signed in to change notification settings - Fork 5
52 lines (49 loc) · 1.22 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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