diff options
author | Stefano Germano <stefanogermano0@gmail.com> | 2020-07-22 13:22:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-22 13:22:00 +0200 |
commit | bafe5ba457b51e49e640162a33fd3342baacd2aa (patch) | |
tree | aac6115b25996471ed4196ed658b07c100ae580f /.github/workflows/scala.yml | |
parent | 633529ca7a911646048886b7e2e0d1d98c94fdf3 (diff) | |
download | RSAComb-bafe5ba457b51e49e640162a33fd3342baacd2aa.tar.gz RSAComb-bafe5ba457b51e49e640162a33fd3342baacd2aa.zip |
Scala workflow - GitHub Actions
Diffstat (limited to '.github/workflows/scala.yml')
-rw-r--r-- | .github/workflows/scala.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml new file mode 100644 index 0000000..f182d0c --- /dev/null +++ b/.github/workflows/scala.yml | |||
@@ -0,0 +1,21 @@ | |||
1 | name: Scala CI | ||
2 | |||
3 | on: | ||
4 | push: | ||
5 | branches: [ master ] | ||
6 | pull_request: | ||
7 | branches: [ master ] | ||
8 | |||
9 | jobs: | ||
10 | build: | ||
11 | |||
12 | runs-on: ubuntu-latest | ||
13 | |||
14 | steps: | ||
15 | - uses: actions/checkout@v2 | ||
16 | - name: Set up JDK 1.8 | ||
17 | uses: actions/setup-java@v1 | ||
18 | with: | ||
19 | java-version: 1.8 | ||
20 | - name: Run tests | ||
21 | run: sbt test | ||