Skip to content

chore: Configure Renovate #104

chore: Configure Renovate

chore: Configure Renovate #104

Workflow file for this run

name: Continuous Integration
on: pull_request
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install dependencies and Build the project
run: mvn clean install
- name: Upload code coverage report to workflow as an artifact
uses: actions/upload-artifact@v2
with:
name: core/target/site
path: coverage
- name: Upload code coverage report to codecov.io and comment in pull request
uses: codecov/codecov-action@v1