Skip to content

graphQL integration testing #28

graphQL integration testing

graphQL integration testing #28

Workflow file for this run

name: Code coverage
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
run:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 17
- name: Run tests and collect coverage
run: mvn clean install jacoco:report
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: target/site/jacoco/jacoco.xml
fail_ci_if_error: true