Skip to content

[CI SKIP] Add some notes about the known caveat of multi protocol def… #18

[CI SKIP] Add some notes about the known caveat of multi protocol def…

[CI SKIP] Add some notes about the known caveat of multi protocol def… #18

Workflow file for this run

name: Gradle Build, Test, and Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build Networking with Gradle
run: ./gradlew build test
- name: Checkstyle
run: ./gradlew check