diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-07-02 14:18:51 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-07-06 15:34:57 +0200 |
commit | a573641a70a626983c1d63965e377ea0be274f41 (patch) | |
tree | fa242cb03627437c6a40a38900d894c97a6436c0 /.github/workflows/gradle-integration-test.pr.yml | |
parent | b594564969ec4d93d59e4850a63f0fbf8f68cf7a (diff) | |
download | dokka-a573641a70a626983c1d63965e377ea0be274f41.tar.gz dokka-a573641a70a626983c1d63965e377ea0be274f41.tar.bz2 dokka-a573641a70a626983c1d63965e377ea0be274f41.zip |
Implement AndroidGradleIntegrationTest
Diffstat (limited to '.github/workflows/gradle-integration-test.pr.yml')
-rw-r--r-- | .github/workflows/gradle-integration-test.pr.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/gradle-integration-test.pr.yml b/.github/workflows/gradle-integration-test.pr.yml new file mode 100644 index 00000000..bfc1b9d3 --- /dev/null +++ b/.github/workflows/gradle-integration-test.pr.yml @@ -0,0 +1,13 @@ +name: CI (Integration Test) + +on: pull_request + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v1 + with: + java-version: 11 + - run: ./gradlew clean integrationTest -s |