From f50d0aae669401546d52b20a9d19adb18fd426e8 Mon Sep 17 00:00:00 2001 From: Krzysztof Dyba <35004826+kadyb@users.noreply.github.com> Date: Wed, 17 Apr 2024 16:23:59 +0200 Subject: [PATCH 1/3] Update R-CMD-check.yaml --- .github/workflows/R-CMD-check.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 7da74b1..3b7fd87 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -32,13 +32,13 @@ jobs: - uses: actions/checkout@v4 - uses: r-lib/actions/setup-tinytex@v2 - if: matrix.config.latex == 'true' + if: matrix.config.latex == true - name: Install additional LaTeX packages run: | tlmgr update --self tlmgr install grfext.sty - if: matrix.config.latex == 'true' + if: matrix.config.latex == true - uses: r-lib/actions/setup-pandoc@v2 From 107842858cb4677f5bb6c8242952fd6e5666b51d Mon Sep 17 00:00:00 2001 From: Krzysztof Dyba <35004826+kadyb@users.noreply.github.com> Date: Wed, 17 Apr 2024 16:27:55 +0200 Subject: [PATCH 2/3] Update R-CMD-check.yaml --- .github/workflows/R-CMD-check.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 3b7fd87..e3de5ce 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -35,9 +35,7 @@ jobs: if: matrix.config.latex == true - name: Install additional LaTeX packages - run: | - tlmgr update --self - tlmgr install grfext.sty + run: tlmgr install grfext if: matrix.config.latex == true - uses: r-lib/actions/setup-pandoc@v2 From c52f10d36648126f978d515bfda262b6504dfc14 Mon Sep 17 00:00:00 2001 From: Krzysztof Dyba <35004826+kadyb@users.noreply.github.com> Date: Wed, 17 Apr 2024 16:34:55 +0200 Subject: [PATCH 3/3] Update R-CMD-check.yaml --- .github/workflows/R-CMD-check.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index e3de5ce..75b02cc 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -18,11 +18,11 @@ jobs: fail-fast: false matrix: config: - - {os: macos-latest, r: 'release', latex: true} + - {os: macos-latest, r: 'release'} - {os: windows-latest, r: 'release'} - - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release', latex: true } - - {os: ubuntu-latest, r: 'release', latex: true} - - {os: ubuntu-latest, r: 'oldrel-1', latex: true} + - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} + - {os: ubuntu-latest, r: 'release'} + - {os: ubuntu-latest, r: 'oldrel-1'} env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} @@ -32,11 +32,9 @@ jobs: - uses: actions/checkout@v4 - uses: r-lib/actions/setup-tinytex@v2 - if: matrix.config.latex == true - name: Install additional LaTeX packages run: tlmgr install grfext - if: matrix.config.latex == true - uses: r-lib/actions/setup-pandoc@v2