Skip to content

Commit 438d344

Browse files
committed
try kicking off bloop before connecting to it
1 parent 4af9835 commit 438d344

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/sbt_test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@ jobs:
5858
- name: Warm up scala
5959
run: |
6060
scala -version
61+
62+
bloop server &
63+
# Poll until Bloop is ready
64+
for i in $(seq 1 30); do
65+
bloop about && break
66+
echo "Waiting for Bloop... ($i)"
67+
sleep 2
68+
done
69+
6170
scala -e 'println("Hello, Scala!")'
6271
6372
- name: Set up .NET SDK

0 commit comments

Comments
 (0)