Skip to content

noticket: Move EntitySchema ID field validation to after the entity's… #696

noticket: Move EntitySchema ID field validation to after the entity's…

noticket: Move EntitySchema ID field validation to after the entity's… #696

Workflow file for this run

name: Build YOJ
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened, edited, ready_for_review]
jobs:
build:
name: Build YOJ - Unit Tests
runs-on: ubuntu-latest
env:
MAVEN_ARGS: --batch-mode --update-snapshots -Dstyle.color=always
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn $MAVEN_ARGS verify
integration-test:
name: Build YOJ - YDB Repository Integration Tests
runs-on: ubuntu-latest
env:
MAVEN_ARGS: --batch-mode --update-snapshots -Dstyle.color=always
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn $MAVEN_ARGS -Plombok,integration-test -am -pl :yoj-repository-ydb-v2 verify
javadoc-and-source:
name: Validate JavaDoc
runs-on: ubuntu-latest
env:
MAVEN_ARGS: --batch-mode --update-snapshots -Dstyle.color=always
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn $MAVEN_ARGS -Plombok,javadoc-and-source -DskipTests verify