aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzczepan Faber <s.faber@airbnb.com>2021-01-25 08:22:03 -0600
committerSzczepan Faber <s.faber@airbnb.com>2021-01-25 08:22:03 -0600
commit28263afc737e8e6b5e370a864c99181edd767b8c (patch)
treecd7546ac72142ffa6f439b768ed7b5c5918dfe18
parent8744735a9429fe04e41f22546365b3f77ba6e8c3 (diff)
downloadmockito-kotlin-28263afc737e8e6b5e370a864c99181edd767b8c.tar.gz
Debuggability, disabled old Kotlin versions
-rw-r--r--.github/workflows/ci.yml4
-rw-r--r--tests/build.gradle1
2 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index bd37f8a..2328c48 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -50,7 +50,9 @@ jobs:
strategy:
matrix:
mock-maker: ['mock-maker-default', 'mock-maker-inline']
- kotlin: ['1.0.7', '1.1.61', '1.2.50', '1.3.50']
+ kotlin: ['1.3.50', '1.4.21']
+ # Note that the old Travis CI referenced other Kotlin versions: '1.0.7', '1.1.61', '1.2.50'
+ # However, those versions of Kotlin don't work with latest Gradle
steps:
diff --git a/tests/build.gradle b/tests/build.gradle
index 91da020..24ab716 100644
--- a/tests/build.gradle
+++ b/tests/build.gradle
@@ -1,5 +1,6 @@
buildscript {
ext.kotlin_version = System.getenv("KOTLIN_VERSION") ?: '1.3.50'
+ println "$project uses Kotlin $kotlin_version"
repositories {
mavenCentral()