Skip to content

UIFR-225: Authentication UI Login Page doesn't work after upgrade to … #72

UIFR-225: Authentication UI Login Page doesn't work after upgrade to …

UIFR-225: Authentication UI Login Page doesn't work after upgrade to … #72

Workflow file for this run

# this build is designed to replicate the Travis CI workflow
name: Java CI with Maven
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [8, 11, 17]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn clean install --file pom.xml