File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1- name : CI build
1+ name : CI Build
22
33on :
44 push :
1414 runs-on : ubuntu-latest
1515 if : github.event_name == 'push' || github.event.action != 'labeled' # run for 'opened', 'reopened' and 'synchronize'
1616
17+ name : Check formatting
18+
1719 steps :
1820 - uses : actions/checkout@v5
1921 with :
3638 jvm : ['temurin:1.8.0-392', 'temurin:1.21.0.1']
3739 fail-fast : false
3840
41+ name : " Scala: ${{ matrix.scala == '2_12' && '2.12' || matrix.scala == '2_13' && '2.13' || '3' }} / Platform: ${{ matrix.platform }} / JVM: ${{ matrix.jvm }}"
42+
3943 steps :
4044 - uses : actions/checkout@v5
4145 with :
Original file line number Diff line number Diff line change 99 release-tag :
1010 runs-on : ubuntu-latest
1111
12+ name : ${{ startsWith(github.ref, 'refs/tags/') && 'Publish Tag as Release' || 'Publish Snapshot' }}
13+
1214 steps :
1315 - uses : actions/checkout@v5
1416 with :
Original file line number Diff line number Diff line change @@ -242,8 +242,7 @@ val settings = Seq(
242242 for2_12 = Seq (" -Ywarn-unused:locals" ), // Scala 2.12 ignores @unused warns
243243 for2_13 = Seq .empty,
244244 for3 = Seq .empty
245- ),
246- coverageScalacPluginVersion := " 2.4.0" // update, since sbt-scoverage was not updated
245+ )
247246 /* ,
248247 Compile / compile / wartremoverWarnings ++= Warts.allBut(
249248 Wart.Any,
You can’t perform that action at this time.
0 commit comments