Skip to content

Commit

Permalink
Merge branch 'main' into patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge authored Jul 17, 2022
2 parents 8463ae0 + 4271587 commit d4cb826
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ name: Continuous Integration

on:
pull_request:
branches: ['**']
branches: ['**', '!update/**', '!pr/**']
push:
branches: ['**']
branches: ['**', '!update/**', '!pr/**']
tags: [v*]

env:
Expand All @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.1.0, 2.12.15, 2.13.8]
scala: [3.1.3, 2.12.16, 2.13.8]
java: [temurin@8]
project: [rootJS, rootJVM]
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -147,42 +147,42 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Download target directories (3.1.0, rootJS)
- name: Download target directories (3.1.3, rootJS)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.0-rootJS
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3-rootJS

- name: Inflate target directories (3.1.0, rootJS)
- name: Inflate target directories (3.1.3, rootJS)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.1.0, rootJVM)
- name: Download target directories (3.1.3, rootJVM)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.0-rootJVM
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3-rootJVM

- name: Inflate target directories (3.1.0, rootJVM)
- name: Inflate target directories (3.1.3, rootJVM)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.12.15, rootJS)
- name: Download target directories (2.12.16, rootJS)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJS
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJS

- name: Inflate target directories (2.12.15, rootJS)
- name: Inflate target directories (2.12.16, rootJS)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.12.15, rootJVM)
- name: Download target directories (2.12.16, rootJVM)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJVM
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJVM

- name: Inflate target directories (2.12.15, rootJVM)
- name: Inflate target directories (2.12.16, rootJVM)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ThisBuild / tlBaseVersion := "2.0"
ThisBuild / developers += tlGitHubDev("mpilquist", "Michael Pilquist")
ThisBuild / startYear := Some(2021)

ThisBuild / crossScalaVersions := List("3.1.0", "2.12.15", "2.13.8")
ThisBuild / crossScalaVersions := List("3.1.3", "2.12.16", "2.13.8")
ThisBuild / tlVersionIntroduced := Map("3" -> "1.0.2")

lazy val root = tlCrossRootProject.aggregate(core, munit)
Expand All @@ -16,7 +16,7 @@ lazy val core = crossProject(JSPlatform, JVMPlatform)
.settings(
libraryDependencies ++= List(
"org.scalacheck" %%% "scalacheck" % "1.16.0",
"org.typelevel" %%% "cats-core" % "2.7.0"
"org.typelevel" %%% "cats-core" % "2.8.0"
)
)

Expand All @@ -29,6 +29,6 @@ lazy val munit = crossProject(JSPlatform, JVMPlatform)
.settings(
libraryDependencies ++= List(
"org.scalameta" %%% "munit-scalacheck" % "1.0.0-M6",
"org.typelevel" %%% "cats-effect" % "3.3.11" % Test
"org.typelevel" %%% "cats-effect" % "3.3.14" % Test
)
)
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.5.8
sbt.version=1.7.1
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.9")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.13")

0 comments on commit d4cb826

Please sign in to comment.