diff options
| author | Federico Igne <federico.igne@cs.ox.ac.uk> | 2020-08-04 11:17:56 +0100 |
|---|---|---|
| committer | Federico Igne <federico.igne@cs.ox.ac.uk> | 2020-08-04 11:17:56 +0100 |
| commit | a9e44e1b67d373faa05dd957c124eae343ff0cfa (patch) | |
| tree | 4192c2284f445cc2da5920e363eae132adf6000f | |
| parent | e8518528a77edf6a28449a57bd96048a6232a5db (diff) | |
| parent | bafe5ba457b51e49e640162a33fd3342baacd2aa (diff) | |
| download | RSAComb-a9e44e1b67d373faa05dd957c124eae343ff0cfa.tar.gz RSAComb-a9e44e1b67d373faa05dd957c124eae343ff0cfa.zip | |
Merge branch 'master' of https://github.com/KRR-Oxford/RSA-combined-approach
| -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 | ||
