Skip to content

split into subprojects: abecto-core, abecto-benchmark #81

split into subprojects: abecto-core, abecto-benchmark

split into subprojects: abecto-core, abecto-benchmark #81

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Verify with Maven
run: mvn -B verify --file pom.xml
- name: Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Test Reports
path: */target/surefire-reports/*.xml

Check failure on line 30 in .github/workflows/maven.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/maven.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
reporter: java-junit
fail-on-error: false