Skip to content

Commit 62bbb9a

Browse files
committed
Update the checking workflow: add a library to check tcltk on Linux
1 parent bb16697 commit 62bbb9a

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/R-CMD-check.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- uses: actions/checkout@v4
34-
34+
3535
- uses: r-lib/actions/setup-pandoc@v2
3636

3737
- uses: r-lib/actions/setup-tinytex@v2
@@ -41,12 +41,17 @@ jobs:
4141
r-version: ${{ matrix.config.r }}
4242
http-user-agent: ${{ matrix.config.http-user-agent }}
4343
use-public-rspm: true
44-
44+
4545
- name: Install libraries for macOS
4646
if: runner.os == 'macOS'
4747
run: |
4848
brew install xquartz
4949
50+
- name: Install libraries for linux
51+
if: runner.os == 'Linux'
52+
run: |
53+
sudo apt-get install texlive-base texlive-latex-recommended texlive-latex-extra
54+
5055
- uses: r-lib/actions/setup-r-dependencies@v2
5156
with:
5257
pak-version: devel
@@ -58,4 +63,5 @@ jobs:
5863
args: 'c("--no-manual", "--as-cran")'
5964
error-on: '"error"'
6065
check-dir: '"check"'
61-
66+
67+

0 commit comments

Comments
 (0)