diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml new file mode 100644 index 0000000..6814686 --- /dev/null +++ b/.github/workflows/scala.yml @@ -0,0 +1,22 @@ +name: Scala CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + - name: Run tests + run: sbt test diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 07c7105..0000000 --- a/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -language: scala -scala: - - "2.13.1" -jdk: - - openjdk8 - - openjdk11 diff --git a/build.sbt b/build.sbt index 525c08b..deef75f 100644 --- a/build.sbt +++ b/build.sbt @@ -29,7 +29,7 @@ libraryDependencies ++= { "com.typesafe.akka" %% "akka-stream" % "2.6.1", "org.geneontology" %% "arachne" % "1.2.1", "org.geneontology" %% "whelk-owlapi" % "1.1.1", - "com.outr" %% "scribe-slf4j" % "2.7.10", + "com.outr" %% "scribe-slf4j" % "3.5.5", "org.apache.jena" % "apache-jena-libs" % "3.13.1" pomOnly() ) } diff --git a/project/build.properties b/project/build.properties index ed63e34..67d27a1 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1,2 +1 @@ -sbt.version=1.4.0 - +sbt.version=1.5.3