Skip to content

Commit

Permalink
Fix CICD
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz committed Dec 14, 2022
1 parent 06a271d commit 9a3b874
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
# supported scala versions
include:
- scala: 2.13.8
name: Scala2
name: Scala2_13
test-tasks: test #coverage suspended due a bug
- scala: 3.1.3
name: Scala3
- scala: 3.2.1
name: Scala3_2
test-tasks: test # scoverage doesn’t support Scala 3

steps:
Expand Down
12 changes: 6 additions & 6 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ pull_request_rules:
- "#approved-reviews-by>=1"
- check-success=codecov/patch
- check-success=codecov/project
- check-success=build (Scala2)
- check-success=build (Scala3)
- check-success=build (Scala2_13)
- check-success=build (Scala3_2)
- base=main
- label!=work-in-progress
actions:
Expand All @@ -15,8 +15,8 @@ pull_request_rules:
- name: automatic merge for master when CI passes and author is steward
conditions:
- author=scala-steward
- check-success=build (Scala2)
- check-success=build (Scala3)
- check-success=build (Scala2_13)
- check-success=build (Scala3_2)
- base=main
actions:
merge:
Expand All @@ -25,8 +25,8 @@ pull_request_rules:
- name: automatic merge for master when CI passes and author is dependabot
conditions:
- author=dependabot[bot]
- check-success=build (Scala2)
- check-success=build (Scala3)
- check-success=build (Scala2_13)
- check-success=build (Scala3_2)
- base=main
actions:
merge:
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import ModuleMdocPlugin.autoImport.mdocScalacOptions
lazy val prjName = "erules"
lazy val org = "com.github.geirolz"
lazy val scala213 = "2.13.8"
lazy val scala31 = "3.2.1"
lazy val supportedScalaVersions = List(scala213, scala31)
lazy val scala32 = "3.2.1"
lazy val supportedScalaVersions = List(scala213, scala32)

//## global project to no publish ##
lazy val erules: Project = project
Expand Down

0 comments on commit 9a3b874

Please sign in to comment.