Show value of lval in step into targets' options #10
Workflow file for this run
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: coverage | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: maven | |
- name: Set up Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Build with Maven | |
run: mvn install | |
- name: Create Jacoco report | |
run: mvn test jacoco:report | |
- name: Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
base-path: src/main/java | |
file: target/site/jacoco/jacoco.xml |