Skip to content

Commit ee0730f

Browse files
committed
Set LC_CTYPE
1 parent b6e53d2 commit ee0730f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
test:
1818
name: test
1919
runs-on: ${{matrix.os}}
20+
env:
21+
LANG: C.UTF-8
22+
LC_ALL: C.UTF-8
23+
LC_CTYPE: C.UTF-8
2024
if: "! contains(github.event.head_commit.message, '[skip ci]')"
2125
strategy:
2226
matrix:
@@ -43,12 +47,9 @@ jobs:
4347
cargo build --verbose --features oniguruma --release --target ${{ matrix.target }}
4448
fi
4549
mv target/${{matrix.target}}/release/teip target/release
46-
- name: Setup upterm session
47-
uses: lhotari/action-upterm@v1
4850
- name: Run tests
4951
timeout-minutes: 10
5052
run: |
51-
export LANG=C.UTF-8 LC_ALL=C.UTF-8
5253
cargo test --verbose --features oniguruma
5354
bash tests/test_large_file.sh
5455
bash tests/test_long_line.sh

0 commit comments

Comments
 (0)