From a1bb9aa921df36fc95766ebe9531f3f79a9ffdc6 Mon Sep 17 00:00:00 2001 From: William Melody Date: Fri, 12 Jul 2024 21:57:45 -0700 Subject: [PATCH] Set encoding variables on Ubuntu in GitHub Actions. --- .github/workflows/tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3a4a0193..7c5dc28e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -278,6 +278,11 @@ jobs: echo "'$LANG'" echo "'$LC_ALL'" echo "'$LC_TYPE'" + - name: "Set encoding variables" + run: | + export LANG="C.utf-8" + export LC_ALL="C.utf-8" + export LC_TYPE="C.utf-8" - name: "Run bats tests" run: script -q -e -c "bats test" # - name: "Install Go"