From ff6ac80e6372ca3e01357a2c06040373f85e6c43 Mon Sep 17 00:00:00 2001 From: "lucuma-steward[bot]" <106720676+lucuma-steward[bot]@users.noreply.github.com> Date: Tue, 16 Jul 2024 20:38:36 +0000 Subject: [PATCH] Run prePR with sbt-typelevel Executed command: sbt tlPrePrBotHook --- .github/workflows/ci.yml | 8 ++++++++ .scalafix-common.conf | 1 + .scalafmt-common.conf | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c619d5..57d979f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,10 @@ jobs: runs-on: ${{ matrix.os }} timeout-minutes: 60 steps: + - name: Install sbt + if: contains(runner.os, 'macos') + run: brew install sbt + - name: Checkout current branch (full) uses: actions/checkout@v4 with: @@ -94,6 +98,10 @@ jobs: java: [temurin@17] runs-on: ${{ matrix.os }} steps: + - name: Install sbt + if: contains(runner.os, 'macos') + run: brew install sbt + - name: Checkout current branch (full) uses: actions/checkout@v4 with: diff --git a/.scalafix-common.conf b/.scalafix-common.conf index 5d349c3..e38e6ca 100644 --- a/.scalafix-common.conf +++ b/.scalafix-common.conf @@ -7,3 +7,4 @@ rules = [ OrganizeImports ] +OrganizeImports.targetDialect = Auto diff --git a/.scalafmt-common.conf b/.scalafmt-common.conf index 85cebd1..0d8610d 100644 --- a/.scalafmt-common.conf +++ b/.scalafmt-common.conf @@ -4,7 +4,7 @@ # this file by hand! Instead, if you wish to make changes, you should # make a PR to sbt-lucuma. -version = "3.7.17" +version = "3.8.0" style = default runner.dialect = scala3