Skip to content

Commit

Permalink
Add tests to verify java versions on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TWiStErRob committed Jul 22, 2023
1 parent 3a502f1 commit 6530a06
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/java-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
jobs:
openjdk:
strategy:
fail-fast: false
matrix:
jdk: [8, 11, 17]
name: "OpenJDK ${{ matrix.jdk }}"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
jobs:
gradle:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package io.github.gradlenexus.publishplugin

import org.junit.jupiter.api.Test
import org.junit.jupiter.api.fail

class JavaVersionInCompatTest {

@Test fun test() {
fail(System.getProperty("java.version").toString())
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package io.github.gradlenexus.publishplugin.e2e

import org.junit.jupiter.api.Test
import org.junit.jupiter.api.fail

class JavaVersionInE2ETest {

@Test fun test() {
fail(System.getProperty("java.version").toString())
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package io.github.gradlenexus.publishplugin

import org.junit.jupiter.api.Test
import org.junit.jupiter.api.fail

class JavaVersionUnitTest {

@Test fun test() {
fail(System.getProperty("java.version").toString())
}
}

0 comments on commit 6530a06

Please sign in to comment.