Skip to content

Commit

Permalink
setup GitHub Actions (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored May 6, 2022
1 parent a3cf2c9 commit 22824f7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 11
- name: Scripted tests
run: sbt scripted
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ lazy val root = (project in file("."))
System.getProperty("sbt.build.version", (sbtVersion in GlobalScope).value)
},
scalacOptions ++= Seq("-unchecked", "-deprecation", "-target:jvm-1.8"),
scalaVersion := "2.13.8",
scalaVersion := "2.12.15",
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % "1.3.0",
"org.scalaz" %% "scalaz-core" % "7.3.6",
"org.scalaz" %% "scalaz-effect" % "7.3.6",
"org.scalatest" %% "scalatest" % "3.2.12" % "test"
"org.scalaz" %% "scalaz-core" % "7.2.34",
"org.scalaz" %% "scalaz-effect" % "7.2.34",
"org.scalatest" %% "scalatest" % "3.0.9" % "test"
),
publishMavenStyle := false,
bintrayOrganization := Some("sbt"),
Expand Down

0 comments on commit 22824f7

Please sign in to comment.