Upgrade to gradle 8.5 #20
This file contains 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 with Gradle | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [17, 21] | |
name: Java ${{ matrix.java }} sample | |
steps: | |
- name: Checkout calimero-core | |
uses: actions/checkout@v3 | |
with: | |
repository: calimero-project/calimero-core | |
path: calimero-core | |
- name: Checkout calimero-rxtx | |
uses: actions/checkout@v3 | |
with: | |
repository: calimero-project/calimero-rxtx | |
path: calimero-rxtx | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
- name: Execute Gradle build | |
run: | | |
cd calimero-rxtx | |
./gradlew build |