Skip to content

adapted XsemanticsValidatorTests #128

adapted XsemanticsValidatorTests

adapted XsemanticsValidatorTests #128

Workflow file for this run

name: Java CI with Maven
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v3.6.0
with:
java-version: 17
distribution: temurin
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: |
~/.m2
~/.sonar/cache
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml', '**/*.yml', '**/*.target') }}
restore-keys: ${{ runner.os }}-m2-
- name: Build with Maven
run: >
xvfb-run
./mvnw -f releng/org.eclipse.xsemantics.releng/pom.xml
clean verify -Pjacoco
-DrepoToken=$COVERALLS_REPO_TOKEN
-DpullRequest=${{ github.event.pull_request.number }}
coveralls:report
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }}