diff options
author | Marcin Aman <marcin.aman@gmail.com> | 2021-04-14 21:51:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-14 21:51:16 +0200 |
commit | 7bfab097f35f86bafbc2feff23e6658ad17da2ae (patch) | |
tree | 62528c2763cdb5bd02c8eeff17a772e22462051a /.github/workflows | |
parent | 38270a3b8783857bd0bba4b9422b19b4de507e4c (diff) | |
download | dokka-7bfab097f35f86bafbc2feff23e6658ad17da2ae.tar.gz dokka-7bfab097f35f86bafbc2feff23e6658ad17da2ae.tar.bz2 dokka-7bfab097f35f86bafbc2feff23e6658ad17da2ae.zip |
Introduce binary compatibility plugin (#1774)
* Introduce binary compatibility plugin
* Update diffs
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/apiCheck.yml | 13 | ||||
-rw-r--r-- | .github/workflows/wrapper-validation.yml | 10 |
2 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/apiCheck.yml b/.github/workflows/apiCheck.yml new file mode 100644 index 00000000..55fb3fbe --- /dev/null +++ b/.github/workflows/apiCheck.yml @@ -0,0 +1,13 @@ +name: CI + +on: pull_request + +jobs: + apiCheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v1 + with: + java-version: 11 + - run: ./gradlew apiCheck --stacktrace diff --git a/.github/workflows/wrapper-validation.yml b/.github/workflows/wrapper-validation.yml new file mode 100644 index 00000000..6d78a6af --- /dev/null +++ b/.github/workflows/wrapper-validation.yml @@ -0,0 +1,10 @@ +name: "Validate Gradle Wrapper" +on: pull_request + +jobs: + validation: + name: "Validation" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: gradle/wrapper-validation-action@v1
\ No newline at end of file |