Skip to content

Commit 14ea611

Browse files
Add tests in terminal with a script
1 parent 84cefc4 commit 14ea611

File tree

2 files changed

+818
-0
lines changed

2 files changed

+818
-0
lines changed

.github/workflows/build.yml

+7
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
run: cargo build --verbose
2222
- name: Run tests
2323
run: cargo test --verbose
24+
- name: Tests in terminal
25+
run: bash test-tools/run-cmd-tests.sh
2426

2527
build_macos:
2628
runs-on: macos-latest
@@ -31,6 +33,8 @@ jobs:
3133
run: cargo build --verbose
3234
- name: Run tests
3335
run: cargo test --verbose
36+
- name: Tests in terminal
37+
run: bash test-tools/run-cmd-tests.sh
3438

3539
build_windows:
3640
runs-on: windows-latest
@@ -41,3 +45,6 @@ jobs:
4145
run: cargo build --verbose
4246
- name: Run tests
4347
run: cargo test --verbose
48+
- name: Tests in terminal
49+
shell: bash
50+
run: ./test-tools/run-cmd-tests.sh

0 commit comments

Comments
 (0)