chore(deps): bump actions/checkout from 4.3.1 to 6.0.2 #521
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 check | |
| on: pull_request | |
| jobs: | |
| build-and-check: | |
| strategy: | |
| matrix: | |
| os: [ macos-latest, windows-latest, ubuntu-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@v6.0.2 | |
| - name: Prepares environment for building | |
| uses: ./.github/actions/setup | |
| - name: Prepare nodeJS enviroment for integrity check | |
| uses: ./.github/actions/setup-nodejs | |
| with: | |
| os: ${{ matrix.os }} | |
| - name: Cache Kotlin Konan | |
| id: cache-kotlin-konan | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.konan/**/* | |
| key: kotlin-konan-${{ matrix.os }} | |
| - name: Build Native Binary for macos | |
| if: matrix.os == 'macos-latest' | |
| uses: burrunan/gradle-cache-action@v3 | |
| with: | |
| gradle-version: wrapper | |
| job-id: ${{ matrix.os }} | |
| arguments: releaseMacOS | |
| - name: Build Native Binary for Windows | |
| if: matrix.os == 'windows-latest' | |
| uses: burrunan/gradle-cache-action@v3 | |
| with: | |
| gradle-version: wrapper | |
| job-id: ${{ matrix.os }} | |
| arguments: releaseWindows | |
| - name: Build Native Binary for Linux | |
| if: matrix.os == 'ubuntu-latest' | |
| uses: burrunan/gradle-cache-action@v3 | |
| with: | |
| gradle-version: wrapper | |
| job-id: ${{ matrix.os }} | |
| arguments: releaseLinux | |
| - name: Running Detekt | |
| shell: bash | |
| run: | | |
| ./gradlew detekt | |
| - name: Verify unit tests | |
| shell: bash | |
| run: | | |
| ./gradlew cleanAllTests allTests | |
| continue-on-error: false | |
| - name: CLI Integrity check using SVG | |
| uses: ./.github/actions/cli-integrity-check | |
| with: | |
| type: svg | |
| continue-on-error: false | |
| - name: CLI Integrity check using XML | |
| uses: ./.github/actions/cli-integrity-check | |
| with: | |
| type: xml | |
| continue-on-error: false | |
| - name: Gradle Plugin Integrity check | |
| if: matrix.os == 'ubuntu-latest' | |
| uses: ./.github/actions/gradle-plugin-integrity-check | |
| continue-on-error: false |