Skip to content

Commit 4b4b46d

Browse files
committed
Set specific locale
1 parent 642f3b5 commit 4b4b46d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
- name: Validate formatting
2323
shell: bash
2424
working-directory: ${{ github.workspace }}/compiler+runtime
25-
run: ${{ github.workspace }}/compiler+runtime/bin/ci/validate-formatting
25+
run: ./bin/ci/validate-formatting
2626

2727
- if: ${{ env.CODECOV }} == "on"
2828
name: Upload report to Codecov

compiler+runtime/test/cpp/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
int main(int const argc, char const **argv)
2121
try
2222
{
23-
std::locale::global(std::locale(""));
23+
std::locale::global(std::locale("en_US.UTF-8"));
2424

2525
GC_set_all_interior_pointers(1);
2626
GC_enable();

0 commit comments

Comments
 (0)