Skip to content

Update dgs-codegen to 8.2.1 and remove deprecated option #473

Update dgs-codegen to 8.2.1 and remove deprecated option

Update dgs-codegen to 8.2.1 and remove deprecated option #473

Workflow file for this run

name: Java CI
on:
push:
branches:
- '**'
tags-ignore:
- '*.*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
job: [ test, spotless ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build/Test with Maven
if: matrix.job == 'test'
run: ./mvnw -B -ntp verify
- name: Run Spotless
if: matrix.job == 'spotless'
run: ./mvnw spotless:check