WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit e070759

Browse files
committed
integration-tests: Add random delay
1 parent 49eaa5e commit e070759

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/integration-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ jobs:
4545
- name: Checkout
4646
uses: actions/checkout@v4
4747

48+
- name: Random delay (0-20 seconds)
49+
shell: bash
50+
run: |
51+
DELAY=$((RANDOM % 21))
52+
echo "Waiting for $DELAY seconds..."
53+
sleep $DELAY
54+
4855
- name: Setup .NET
4956
uses: actions/setup-dotnet@v4
5057
with:

0 commit comments

Comments
 (0)