We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50bbafb commit 618ad57Copy full SHA for 618ad57
.github/workflows/stdlib.yaml
@@ -0,0 +1,28 @@
1
+name: Compile Full Standard Library
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'main'
7
+ pull_request:
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Git Checkout
17
+ uses: actions/checkout@v4
18
19
+ - name: Set up JDK 17
20
+ uses: actions/setup-java@v4
21
+ with:
22
+ distribution: 'temurin'
23
+ java-version: 17
24
+ cache: 'sbt'
25
26
+ - uses: sbt/setup-sbt@v1
27
+ - name: Compile `scala-library-nonbootstrapped`
28
+ run: ./project/scripts/sbt scala-library-nonbootstrapped/compile
0 commit comments