Skip to content

Commit 87b9b0c

Browse files
author
Andy McKay
authored
Merge pull request actions#54 from JackTreble/master
Add Scala workflow
2 parents 36419cb + 28e1d85 commit 87b9b0c

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

ci/properties/scala.properties.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Scala CI
2+
3+
on: [push]
4+
5+
jobs:
6+
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

Comments
 (0)