diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-04-21 18:29:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 18:29:22 +0200 |
commit | eb50c4f28d978fcd914b819d523e8da607d05b0c (patch) | |
tree | 87041774b82c0af473e3766089f67d939f901eee /.github/workflows/check-api.yml | |
parent | de63c4479bcd9a81db25b5432df82edb98119410 (diff) | |
download | dokka-eb50c4f28d978fcd914b819d523e8da607d05b0c.tar.gz dokka-eb50c4f28d978fcd914b819d523e8da607d05b0c.tar.bz2 dokka-eb50c4f28d978fcd914b819d523e8da607d05b0c.zip |
Clean up GitHub workflows (#2951)
* Run Gradle wrapper checksum less often
* Do not publish examples as artifacts in internal PRs
Diffstat (limited to '.github/workflows/check-api.yml')
-rw-r--r-- | .github/workflows/check-api.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/check-api.yml b/.github/workflows/check-api.yml new file mode 100644 index 00000000..7322809e --- /dev/null +++ b/.github/workflows/check-api.yml @@ -0,0 +1,23 @@ +name: API check + +on: pull_request + +concurrency: + group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' + cancel-in-progress: true + +jobs: + apiCheck: + name: binary compatibility + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 + with: + distribution: 'zulu' + java-version: 17 + cache: 'maven' + - uses: gradle/gradle-build-action@v2 + with: + gradle-home-cache-cleanup: true + arguments: apiCheck --stacktrace |