Skip to content

Global Unique Index (same entity save) #360

Global Unique Index (same entity save)

Global Unique Index (same entity save) #360

Workflow file for this run

name: Build YOJ (unit tests only)
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened, edited, ready_for_review]
jobs:
build:
name: Build YOJ (unit tests only)
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