Skip to content

+ Kleine sprachliche Korrektur in Readme; #146

+ Kleine sprachliche Korrektur in Readme;

+ Kleine sprachliche Korrektur in Readme; #146

Workflow file for this run

# This workflow will build a Java project with Ant
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant
name: test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Test with Ant
run: ant -noinput -buildfile build.xml test
- name: Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Ant Tests
path: ./**/build/test/unit/results/*.xml
reporter: java-junit
fail-on-error: true