Refactor integTest java version handling logic for all distributions #184
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: groovy-tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- uses: actions/checkout@v2 | |
- name: Run Tests | |
run: | | |
./gradlew test --info | |
- name: Upload Coverage Report | |
uses: codecov/[email protected] | |
with: | |
files: ./build/reports/jacoco/test/jacocoTestReport.xml |