Skip to content

Commit 991a49b

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

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.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)