File tree Expand file tree Collapse file tree 2 files changed +12
-13
lines changed
Expand file tree Collapse file tree 2 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 11name : CI
22
3- on : [push, pull_request]
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
47
58jobs :
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
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()
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 }}
Original file line number Diff line number Diff 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(
You can’t perform that action at this time.
0 commit comments