We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d48182 commit e0957c2Copy full SHA for e0957c2
.github/workflows/zig.yml
@@ -17,7 +17,7 @@ jobs:
17
run: cd c && make clean && make
18
19
- name: Test C executable runs
20
- run: cd c && ./chat
+ run: cd c && echo -e "hi\npython\nexit" | timeout 5 ./chat || true
21
22
zig-build-and-test:
23
runs-on: ubuntu-latest
@@ -36,4 +36,4 @@ jobs:
36
run: cd zig && zig test src/chatbot.zig
37
38
- name: Test Zig executable runs
39
- run: cd zig && ./zig-out/bin/chat
+ run: cd zig && echo -e "hi\npython\nexit" | timeout 5 ./zig-out/bin/chat || true
0 commit comments