Skip to content

Commit

Permalink
Fix test-coverage LANG
Browse files Browse the repository at this point in the history
  • Loading branch information
froggleston authored Jan 16, 2025
1 parent 2c2ee2c commit 7961cc7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
RENV_PATHS_ROOT: ~/.local/share/renv
OS_VERSION: 1
LANG: "en_US-UTF.8"

steps:
- uses: actions/checkout@v4
Expand All @@ -27,7 +28,7 @@ jobs:
- name: "Set up pandoc"
uses: r-lib/actions/setup-pandoc@v2

- name: "Install sysreqs"
- name: "Setup System Environment"
id: run-apt
shell: bash
run: |
Expand All @@ -51,6 +52,8 @@ jobs:
fi
printf "libxslt-dev\n" >> ${{ runner.temp }}/sysdeps.txt
sudo xargs apt-get install --fix-missing -y < ${{ runner.temp }}/sysdeps.txt || echo "Not on Ubuntu"
sudo locale-gen en_US.UTF-8
sudo update-locale LANG=en_US.UTF-8
- uses: r-lib/actions/setup-r-dependencies@v2
with:
Expand Down

0 comments on commit 7961cc7

Please sign in to comment.