Skip to content

Replace upload asset action. #81

Replace upload asset action.

Replace upload asset action. #81

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Build with Maven
uses: GabrielBB/xvfb-action@v1
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
with:
run: |
mvn -e -B -P 2023-06 clean verify -Dtycho.disableP2Mirrors=false
mvn -B -P 2023-06 verify jacoco:report coveralls:report