Skip to content

Commit

Permalink
Update workflow.yml
Browse files Browse the repository at this point in the history
Added requests counter
  • Loading branch information
alxtuz authored Sep 21, 2024
1 parent 11e9473 commit a31f878
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,7 @@ jobs:
run: |
opam exec -- dune exec -- bin/server/server.exe &
sleep 1;
for (( i=0; i<1024; ++i )) ; do curl -s http://localhost:8080/ ; done
for (( i=0; i<1024; ++i )) ; do
echo -n "$i "
curl -s http://localhost:8080/ ;
done

0 comments on commit a31f878

Please sign in to comment.