diff --git a/ci/properties/scala.properties.json b/ci/properties/scala.properties.json new file mode 100644 index 0000000..d44e867 --- /dev/null +++ b/ci/properties/scala.properties.json @@ -0,0 +1,6 @@ +{ + "name": "Scala", + "description": "Build and test a Scala project with SBT.", + "iconName": "blank", + "categories": ["Scala", "Java"] +} diff --git a/ci/scala.yml b/ci/scala.yml new file mode 100644 index 0000000..a668e0b --- /dev/null +++ b/ci/scala.yml @@ -0,0 +1,17 @@ +name: Scala CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Run tests + run: sbt test