aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/gradle-build.pr.yml
diff options
context:
space:
mode:
authorMarcin Aman <maman@virtuslab.com>2020-05-14 19:51:17 +0200
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-05-19 10:55:05 +0200
commitccb5ec383c942cd87856f7af572f20e36f519ee7 (patch)
tree0ae5805dd4894a86dee267552b0938c58e2ce9ca /.github/workflows/gradle-build.pr.yml
parent5451627eb0cf8d95dafd23e96665e062ef023d75 (diff)
downloaddokka-ccb5ec383c942cd87856f7af572f20e36f519ee7.tar.gz
dokka-ccb5ec383c942cd87856f7af572f20e36f519ee7.tar.bz2
dokka-ccb5ec383c942cd87856f7af572f20e36f519ee7.zip
Add github actions CI
Diffstat (limited to '.github/workflows/gradle-build.pr.yml')
-rw-r--r--.github/workflows/gradle-build.pr.yml16
1 files changed, 16 insertions, 0 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