Skip to content

Fix build errors

Fix build errors #226

Workflow file for this run

name: Build project with Maven
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Build project and run UI test
uses: coactions/setup-xvfb@v1
with:
run: mvn -B clean verify -Pci
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}