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 991a49b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

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 991a49b

Please sign in to comment.