Fix for unit tests. Bug fix. #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
test: | |
name: Unit-Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Maven Package | |
run: mvn -B clean package | |
- name: Maven Verify | |
run: mvn -B clean verify -DskipTests |