Skip to content

Commit cb4106e

Browse files
committed
chore: fix workflows
1 parent 0c5cf88 commit cb4106e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build-test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,9 @@ jobs:
2020
run: make -j$(nproc)
2121

2222
- name: Run
23-
run: ./calcplusplus
23+
run: |
24+
./calcplusplus &
25+
PID=$!
26+
sleep 5
27+
kill -SIGINT $PID
28+
wait $PID

0 commit comments

Comments
 (0)