Create new Release Process Workflow #69
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull request CI checks | |
| on: [pull_request] | |
| env: | |
| BUILD_CACHE_AWS_REGION: ${{ secrets.BUILD_CACHE_AWS_REGION }} | |
| BUILD_CACHE_AWS_BUCKET: ${{ secrets.BUILD_CACHE_AWS_BUCKET }} | |
| BUILD_CACHE_AWS_ACCESS_KEY_ID: ${{ secrets.BUILD_CACHE_AWS_ACCESS_KEY_ID }} | |
| BUILD_CACHE_AWS_SECRET_KEY: ${{ secrets.BUILD_CACHE_AWS_SECRET_KEY }} | |
| concurrency: | |
| group: ${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| name: ktlint | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/[email protected] | |
| - name: Set up JDK 17 | |
| uses: actions/[email protected] | |
| with: | |
| distribution: adopt | |
| java-version: 17 | |
| - uses: ./.github/actions/gradle-cache | |
| with: | |
| key-prefix: gradle-lint | |
| - name: spotless | |
| run: ./gradlew spotlessCheck --scan | |
| api_check: | |
| name: API check | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/[email protected] | |
| - name: Set up JDK 17 | |
| uses: actions/[email protected] | |
| with: | |
| distribution: adopt | |
| java-version: 17 | |
| - uses: ./.github/actions/gradle-cache | |
| with: | |
| key-prefix: gradle-APICheck | |
| - name: API check | |
| run: ./gradlew apiCheck --scan | |
| debug_build: | |
| name: Debug build | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/[email protected] | |
| - name: Set up JDK 17 | |
| uses: actions/[email protected] | |
| with: | |
| distribution: adopt | |
| java-version: 17 | |
| - uses: ./.github/actions/gradle-cache | |
| with: | |
| key-prefix: gradle-build | |
| - name: Build | |
| run: ./gradlew assembleDebug --scan | |
| test: | |
| name: Unit tests | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/[email protected] | |
| - name: Set up JDK 17 | |
| uses: actions/[email protected] | |
| with: | |
| distribution: adopt | |
| java-version: 17 | |
| - uses: ./.github/actions/gradle-cache | |
| with: | |
| key-prefix: gradle-test | |
| - name: Unit tests | |
| run: ./gradlew test | |
| - name: Upload test results | |
| uses: actions/[email protected] | |
| if: failure() | |
| with: | |
| name: testDebugUnitTest | |
| path: ./**/build/reports/tests/testDebugUnitTest |