Skip to content

Implement functions for mocking all the grouper results of OOTB tests class with the JSON file for each active profile #520

Implement functions for mocking all the grouper results of OOTB tests class with the JSON file for each active profile

Implement functions for mocking all the grouper results of OOTB tests class with the JSON file for each active profile #520

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: ['17', '19', '21']
runs-on: ${{ matrix.os }}
name: Running Java ${{ matrix.java }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Test code
run: mvn -B -q test -D'logging.level.edu.hawaii.its.api=OFF' -D'logging.level.org.springframework=ERROR' -D'spring.main.banner-mode=off'