We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fee849 commit 183e831Copy full SHA for 183e831
.github/workflows/continuous_integration.yml
@@ -8,7 +8,7 @@ on:
8
- master
9
jobs:
10
build:
11
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
12
steps:
13
- name: Checkout
14
uses: actions/checkout@v2
base/build.gradle
@@ -59,7 +59,7 @@ task testAllJavaVersions() { testAllTask ->
59
60
javaVersionsForTest.each {version ->
61
62
- if (version != 10) task("testJava$version", type: Test) {
+ task("testJava$version", type: Test) {
63
64
// The version of bytebuddy used by mockk only supports Java 19 experimentally so far
65
if (version == 19) systemProperty 'net.bytebuddy.experimental', true
0 commit comments