Skip to content

Fix failing tests

Fix failing tests #52

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Checkout project
uses: actions/checkout@v4
- name: Build project and run UI test
uses: coactions/setup-xvfb@v1
with:
run: mvn clean verify