Skip to content

Key interface (#3)

Key interface (#3) #6

name: Build
on:
push:
branches:
- 'main'
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
jdk: [17]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.jdk }}
uses: spring-io/spring-gradle-build-action@v2
with:
java-version: ${{ matrix.jdk }}
distribution: temurin
- name: Build with Gradle
run: ./gradlew check
- name: Test Reports
uses: mikepenz/action-junit-report@v3
if: success() || failure()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'