Skip to content

Commit

Permalink
update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kitlangton committed Sep 5, 2024
1 parent ef4284b commit a3d2857
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
java-version: 17
cache: sbt

- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Check that workflows are up to date
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck

Expand Down Expand Up @@ -79,6 +82,9 @@ jobs:
java-version: 17
cache: sbt

- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Download target directories (3.3.3)
uses: actions/download-artifact@v4
with:
Expand Down
12 changes: 5 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
inThisBuild(
List(
name := "neotype",
normalizedName := "neotype",
organization := "io.github.kitlangton",
scalaVersion := "3.3.3",
homepage := Some(url("https://github.com/kitlangton/neotype")),
licenses := List("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0")),
organization := "io.github.kitlangton",
scalaVersion := "3.3.3",
homepage := Some(url("https://github.com/kitlangton/neotype")),
licenses := List("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer("kitlangton", "Kit Langton", "[email protected]", url("https://github.com/kitlangton"))
),
Expand Down Expand Up @@ -241,7 +239,7 @@ lazy val examples = (project in file("examples"))
)
.dependsOn(core.jvm, zioJson.jvm, zioQuill)

addCommandAlias("prepare", "scalafixAll;scalafmtAll")
addCommandAlias("prepare", "scalafixAll;scalafmtAll;githubWorkflowGenerate")

welcomeMessage

Expand Down

0 comments on commit a3d2857

Please sign in to comment.