Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: jacoco
on:
push:
branches:
- '*'
- '**/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Set up JDK 9
uses: actions/setup-java@v1
with:
java-version: 9
- name: Cache .m2
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven
- name: Prepare mvnw
run: chmod +x ./mvnw
- name: Build
run: ./mvnw verify jacoco:report-aggregate -B -q
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{}

Check failure on line 40 in .github/workflows/jacoco.yml

View workflow run for this annotation

GitHub Actions / jacoco

Invalid workflow file

The workflow is not valid. .github/workflows/jacoco.yml (Line: 40, Col: 18): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
files: target/site/jacoco-aggregate/jacoco.xml