This repository has been archived by the owner on Jul 4, 2024. It is now read-only.
fix(deps): update dependency org.apache.commons:commons-text to v1.11.0 #442
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
env: | |
NEXUS_USER: ${{ secrets.NEXUS_USER }} | |
NEXUS_PASS: ${{ secrets.NEXUS_PASS }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
- name: Build | |
run: ./gradlew clean build --refresh-dependencies --parallel | |
- name: Generate Coverage Report | |
run: ./gradlew jacocoAggregateReport | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
file: ./build/reports/jacoco/jacocoAggregateReport/jacocoAggregateReport.xml |