diff options
author | Marcin Aman <maman@virtuslab.com> | 2020-05-14 19:51:17 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-05-19 10:55:05 +0200 |
commit | ccb5ec383c942cd87856f7af572f20e36f519ee7 (patch) | |
tree | 0ae5805dd4894a86dee267552b0938c58e2ce9ca | |
parent | 5451627eb0cf8d95dafd23e96665e062ef023d75 (diff) | |
download | dokka-ccb5ec383c942cd87856f7af572f20e36f519ee7.tar.gz dokka-ccb5ec383c942cd87856f7af572f20e36f519ee7.tar.bz2 dokka-ccb5ec383c942cd87856f7af572f20e36f519ee7.zip |
Add github actions CI
-rw-r--r-- | .github/workflows/gradle-build.pr.yml | 16 | ||||
-rw-r--r-- | plugins/base/src/test/kotlin/basic/DRITest.kt | 8 |
2 files changed, 20 insertions, 4 deletions
diff --git a/.github/workflows/gradle-build.pr.yml b/.github/workflows/gradle-build.pr.yml new file mode 100644 index 00000000..2723ecf4 --- /dev/null +++ b/.github/workflows/gradle-build.pr.yml @@ -0,0 +1,16 @@ +name: CI + +on: pull_request + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v1 + with: + java-version: 11 + - run: ./gradlew clean build --stacktrace
\ No newline at end of file diff --git a/plugins/base/src/test/kotlin/basic/DRITest.kt b/plugins/base/src/test/kotlin/basic/DRITest.kt index 0e1f095e..e85ca30e 100644 --- a/plugins/base/src/test/kotlin/basic/DRITest.kt +++ b/plugins/base/src/test/kotlin/basic/DRITest.kt @@ -10,7 +10,7 @@ import org.junit.jupiter.api.Test class DRITest : AbstractCoreTest() { @Test - fun `#634`() { + fun issue634() { val configuration = dokkaConfiguration { passes { pass { @@ -46,7 +46,7 @@ class DRITest : AbstractCoreTest() { } @Test - fun `#634 with immediate nullable self`() { + fun issue634WithImmediateNullableSelf() { val configuration = dokkaConfiguration { passes { pass { @@ -76,7 +76,7 @@ class DRITest : AbstractCoreTest() { } @Test - fun `#634 with generic nullable receiver`() { + fun issue634WithGenericNullableReceiver() { val configuration = dokkaConfiguration { passes { pass { @@ -106,7 +106,7 @@ class DRITest : AbstractCoreTest() { } @Test - fun `#642 with * and Any?`() { + fun issue642WithStarAndAny() { val configuration = dokkaConfiguration { passes { pass { |