Skip to content

Commit

Permalink
windows tlmgr
Browse files Browse the repository at this point in the history
  • Loading branch information
jarbet committed Oct 2, 2024
1 parent be20b39 commit 99462f1
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/r-lib-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,19 @@ jobs:

- name: Install LaTeX packages
run: |
tlmgr install \
parskip \
geometry \
koma-script \
sectsty \
titlesec \
natbib \
lastpage \
hyperref
if [[ "$RUNNER_OS" == "Linux" || "$RUNNER_OS" == "macOS" ]]; then
tlmgr install \
parskip \
geometry \
koma-script \
sectsty \
titlesec \
natbib \
lastpage \
hyperref
elif [[ "$RUNNER_OS" == "Windows" ]]; then
tlmgr install parskip geometry koma-script sectsty titlesec natbib lastpage hyperref
fi
- name: Set up R
uses: r-lib/actions/setup-r@v2
Expand Down

0 comments on commit 99462f1

Please sign in to comment.