We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8abc371 commit 87d459cCopy full SHA for 87d459c
1 file changed
.github/workflows/sbt_test.yml
@@ -50,10 +50,19 @@ jobs:
50
- name: Set up sbt
51
uses: sbt/setup-sbt@v1
52
53
- - name: Set up Scala (via Coursier)
54
- uses: coursier/setup-action@v2
55
- with:
56
- apps: scala:3.6.2
+ # - name: Set up Scala (via Coursier)
+ # uses: coursier/setup-action@v2
+ # with:
+ # apps: scala:3.6.2
57
+
58
+ - name: Set up Scala
59
+ run: |
60
+ if [[ "${{ matrix.config.os }}" =~ ^macos.*$ ]]; then
61
+ brew install scala
62
+ else
63
+ sudo apt-get update
64
+ sudo apt-get install -y scala
65
+ fi
66
67
- name: Warm up scala
68
run: |
0 commit comments