Bump com.gradle.develocity from 4.3 to 4.3.1 #1932
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: CI Build | |
| on: | |
| push: | |
| branches: [ "*" ] | |
| paths-ignore: | |
| - 'mkdocs.yml' | |
| - 'docs/**' | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| # Windows hosts don't support linux containers yet (https://github.com/actions/virtual-environments/issues/1143) | |
| os: [ ubuntu-latest, macos-latest ] | |
| jdk-version: [ 17 ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK ${{ matrix.jdk-version }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.jdk-version }} | |
| - name: Cache Kotlin/Native binaries | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.konan | |
| key: konan-${{ runner.os }} | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Gradle build | |
| run: ./gradlew build |