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 /.github/workflows/gradle-build.pr.yml | |
parent | 5451627eb0cf8d95dafd23e96665e062ef023d75 (diff) | |
download | dokka-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.yml | 16 |
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 |