Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

fix failing tests

fix failing tests #21

Workflow file for this run

name: Java CI
on:
push:
branches:
- 'main'
- 'develop'
pull_request:
branches:
- 'main'
- 'develop'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- name: Build with Maven
run: mvn -B clean install
- name: Run JUnit tests
run: mvn test