Skip to content

Commit

Permalink
chore: fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
budchirp committed Aug 18, 2024
1 parent 0c5cf88 commit cb4106e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,9 @@ jobs:
run: make -j$(nproc)

- name: Run
run: ./calcplusplus
run: |
./calcplusplus &
PID=$!
sleep 5
kill -SIGINT $PID
wait $PID

0 comments on commit cb4106e

Please sign in to comment.