We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6e53d2 commit ee0730fCopy full SHA for ee0730f
.github/workflows/test.yml
@@ -17,6 +17,10 @@ jobs:
17
test:
18
name: test
19
runs-on: ${{matrix.os}}
20
+ env:
21
+ LANG: C.UTF-8
22
+ LC_ALL: C.UTF-8
23
+ LC_CTYPE: C.UTF-8
24
if: "! contains(github.event.head_commit.message, '[skip ci]')"
25
strategy:
26
matrix:
@@ -43,12 +47,9 @@ jobs:
43
47
cargo build --verbose --features oniguruma --release --target ${{ matrix.target }}
44
48
fi
45
49
mv target/${{matrix.target}}/release/teip target/release
46
- - name: Setup upterm session
- uses: lhotari/action-upterm@v1
50
- name: Run tests
51
timeout-minutes: 10
52
run: |
- export LANG=C.UTF-8 LC_ALL=C.UTF-8
53
cargo test --verbose --features oniguruma
54
bash tests/test_large_file.sh
55
bash tests/test_long_line.sh
0 commit comments