We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd6cf3 commit c5aad12Copy full SHA for c5aad12
1 file changed
.github/workflows/sbt_test.yml
@@ -57,15 +57,16 @@ jobs:
57
58
- name: Warm up scala
59
run: |
60
- scala -version
61
-
+ # start the bloop server, it'll download a lot of dependencies, so do it early
+ # also we need to start it before running any scala code, otherwise it will often timeout and cause the whole job to fail
62
bloop server &
63
for i in $(seq 1 30); do
64
timeout 5 bloop about 2>/dev/null && echo "Bloop is ready!" && break
65
echo "Waiting for Bloop... ($i/30)"
66
sleep 2
67
done
68
69
+ scala -version
70
scala -e 'println("Hello, Scala!")'
71
72
- name: Set up .NET SDK
0 commit comments