Skip to content

Java SDK tests against examples from the spec repo #125

Java SDK tests against examples from the spec repo

Java SDK tests against examples from the spec repo #125

Workflow file for this run

---
name: Test
on:
pull_request:
branches: [main]
env:
JAVA_VERSION: '11'
JAVA_DISTRO: 'zulu'
jobs:
build:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: 'true'
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRO }}
cache: maven
- name: Build
run: ./mvnw -ntp -B --file pom.xml verify