From 52eac6077d2b8deb16902acd5504454300f7ced3 Mon Sep 17 00:00:00 2001 From: "nimble-agar-steward[bot]" <106723251+nimble-agar-steward[bot]@users.noreply.github.com> Date: Tue, 15 Nov 2022 00:34:16 +0000 Subject: [PATCH 1/2] Update sbt-typelevel to 0.4.17 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 18e455d..1fcb4f6 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.16") +addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.17") addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.8") addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.2.0") From 7908519ac4e182710479dfd24cdeb927711646a2 Mon Sep 17 00:00:00 2001 From: "nimble-agar-steward[bot]" <106723251+nimble-agar-steward[bot]@users.noreply.github.com> Date: Tue, 15 Nov 2022 00:34:45 +0000 Subject: [PATCH 2/2] Run prePR with sbt-typelevel Executed command: sbt tlPrePrBotHook --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d348817..e3e88b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,26 +88,26 @@ jobs: - name: Check headers and formatting if: matrix.java == 'temurin@17' - run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck + run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck - name: nativeLink if: matrix.project == 'rootNative' - run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' Test/nativeLink + run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' Test/nativeLink - name: Test - run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' test + run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' test - name: Check binary compatibility if: matrix.java == 'temurin@17' - run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' mimaReportBinaryIssues + run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' mimaReportBinaryIssues - name: Generate API documentation if: matrix.java == 'temurin@17' - run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' doc + run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' doc - name: Run the example if: matrix.project == 'rootNative' - run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' example/run + run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' example/run - name: Make target directories if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main') @@ -240,4 +240,4 @@ jobs: (echo "$PGP_PASSPHRASE"; echo; echo) | gpg --command-fd 0 --pinentry-mode loopback --change-passphrase $(gpg --list-secret-keys --with-colons 2> /dev/null | grep '^sec:' | cut --delimiter ':' --fields 5 | tail -n 1) - name: Publish - run: sbt '++${{ matrix.scala }}' tlRelease + run: sbt '++ ${{ matrix.scala }}' tlRelease