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.
2 parents 36419cb + 28e1d85 commit 87b9b0cCopy full SHA for 87b9b0c
ci/properties/scala.properties.json
@@ -0,0 +1,6 @@
1
+{
2
+ "name": "Scala",
3
+ "description": "Build and test a Scala project with SBT.",
4
+ "iconName": "blank",
5
+ "categories": ["Scala", "Java"]
6
+}
ci/scala.yml
@@ -0,0 +1,17 @@
+name: Scala CI
+
+on: [push]
+jobs:
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: Set up JDK 1.8
13
+ uses: actions/setup-java@v1
14
+ with:
15
+ java-version: 1.8
16
+ - name: Run tests
17
+ run: sbt test
0 commit comments