Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Bump com.jayway.jsonpath:json-path from 2.7.0 to 2.9.0 #102

Bump com.jayway.jsonpath:json-path from 2.7.0 to 2.9.0

Bump com.jayway.jsonpath:json-path from 2.7.0 to 2.9.0 #102

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: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
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: 'temurin'
cache: maven
- name: Build w/Coverage
run: mvn -B clean compile jacoco:report verify
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./target/site/jacoco/jacoco.xml
verbose: true
env_vars: GHACTION