Skip to content

Minor formatting

Minor formatting #104

Workflow file for this run

name: Java 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@v4
with:
repository: calimero-project/calimero-core
path: calimero-core
- name: Checkout calimero-rxtx
uses: actions/checkout@v4
with:
repository: calimero-project/calimero-rxtx
path: calimero-rxtx
- name: Checkout calimero-usb
uses: actions/checkout@v4
with:
repository: calimero-project/calimero-usb
path: calimero-usb
- name: Checkout calimero-tools
uses: actions/checkout@v4
with:
path: calimero-tools
- name: setup
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Grant execute permission for gradlew
run: |
cd calimero-tools
chmod +x gradlew
- name: Build with Gradle
run: |
cd calimero-tools
./gradlew build