From 7bfab097f35f86bafbc2feff23e6658ad17da2ae Mon Sep 17 00:00:00 2001 From: Marcin Aman Date: Wed, 14 Apr 2021 21:51:16 +0200 Subject: Introduce binary compatibility plugin (#1774) * Introduce binary compatibility plugin * Update diffs --- .github/workflows/apiCheck.yml | 13 +++++++++++++ .github/workflows/wrapper-validation.yml | 10 ++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .github/workflows/apiCheck.yml create mode 100644 .github/workflows/wrapper-validation.yml (limited to '.github/workflows') 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 -- cgit