Skip to content

feat: apply patches to add support for json5 comments #46

feat: apply patches to add support for json5 comments

feat: apply patches to add support for json5 comments #46

Workflow file for this run

name: Maven CI
on: [push]
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: 'adopt'
cache: maven
- name: Build with Maven
run: mvn --batch-mode --fail-at-end --update-snapshots verify
- name: Publish Test-Report
if: ${{ always() }}
uses: scacap/action-surefire-report@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
directory: ./target/site/jacoco/
fail_ci_if_error: true
verbose: true