Skip to content

Commit 97a813b

Browse files
Better names in GH workflows
1 parent dcaff48 commit 97a813b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI build
1+
name: CI Build
22

33
on:
44
push:
@@ -14,6 +14,8 @@ jobs:
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:
@@ -36,6 +38,8 @@ jobs:
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:

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
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:

build.sbt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)