Skip to content

Source code CDEvents to render as CloudEvent and schema validation #66

Source code CDEvents to render as CloudEvent and schema validation

Source code CDEvents to render as CloudEvent and schema validation #66

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
- 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