Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tribbloid committed Aug 22, 2023
1 parent 9473845 commit ee2234c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
max-parallel: 2
fail-fast: false
matrix:
scalaVersion: [2.13.7", "2.13.8", "2.13.9", "2.13.10", "2.13.11"]
scalaVersion: ["2.13.7", "2.13.8", "2.13.9", "2.13.10", "2.13.11"]

continue-on-error: ${{ contains(needs.vars.outputs.experimentalScalaVersions, matrix.scalaVersion) }}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ allprojects {
}

val vn = VersionNumber.parse(vs.scalaV)
val supportedPatchVs = listOf(6, 7)
val supportedPatchVs = listOf(7, 8, 9, 10, 11)

for (from in supportedPatchVs) {
if (vn.micro >= from) {
Expand Down

0 comments on commit ee2234c

Please sign in to comment.