Skip to content

Commit 9a36015

Browse files
committed
update Scala to 2.13.18 and 3.3.7
1 parent 79f4cb6 commit 9a36015

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: CI
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
47

58
jobs:
69
test:
@@ -10,11 +13,11 @@ jobs:
1013
strategy:
1114
matrix:
1215
scala:
13-
- 2.13.16
14-
- 3.3.6
16+
- 2.13.18
17+
- 3.3.7
1518

1619
steps:
17-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
1821

1922
- uses: coursier/cache-action@v6
2023

@@ -28,8 +31,11 @@ jobs:
2831
- name: setup SBT
2932
uses: sbt/setup-sbt@v1
3033

34+
- name: check code ${{ matrix.scala }}
35+
run: sbt ++${{ matrix.scala }} clean check
36+
3137
- name: build ${{ matrix.scala }}
32-
run: sbt ++${{ matrix.scala }} clean coverage test versionPolicyCheck
38+
run: sbt ++${{ matrix.scala }} clean coverage test
3339

3440
- name: test coverage
3541
if: success()
@@ -38,10 +44,3 @@ jobs:
3844
COVERALLS_FLAG_NAME: Scala ${{ matrix.scala }}
3945
run: sbt ++${{ matrix.scala }} coverageReport coverageAggregate coveralls
4046

41-
- name: slack
42-
uses: homoluctus/slatify@master
43-
if: failure() && github.ref == 'refs/heads/master'
44-
with:
45-
type: ${{ job.status }}
46-
job_name: Build
47-
url: ${{ secrets.SLACK_WEBHOOK }}

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ lazy val commonSettings = Seq(
1919
organizationName := "Evolution",
2020
organizationHomepage := Some(url("https://evolution.com")),
2121
scalaVersion := crossScalaVersions.value.head,
22-
crossScalaVersions := Seq("2.13.16", "3.3.6"),
22+
crossScalaVersions := Seq("2.13.18", "3.3.7"),
2323
licenses := Seq(("MIT", url("https://opensource.org/licenses/MIT"))),
2424
Compile / doc / scalacOptions += "-no-link-warnings",
2525
scalacOptions ++= crossSettings(

0 commit comments

Comments
 (0)