We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae28957 commit 08614f9Copy full SHA for 08614f9
.github/workflows/test.yaml
@@ -13,14 +13,18 @@ jobs:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v4
16
- - uses: xu-cheng/texlive-action@v2
+ - uses: teatimeguest/setup-texlive-action@v3
17
with:
18
- scheme: full
19
- run: |
20
- apk add make msttcorefonts-installer fontconfig
21
- update-ms-fonts
22
- fc-cache -f
23
- make test
+ packages: |
+ scheme-full
+ - name: Setup fonts
+ run: |
+ sudo apt update
+ sudo apt install make fontconfig
24
+ echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | sudo debconf-set-selections
25
+ sudo apt install ttf-mscorefonts-installer
26
+ fc-cache -f
27
+ - run: make test
28
29
check_typos:
30
0 commit comments