Rename StreamHelper to StreamHelper2 to fix name collision being caus… #569
This file contains hidden or 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: Tests | |
on: [pull_request] | |
jobs: | |
unit_test_job: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Java 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11.0.10' | |
distribution: 'zulu' | |
- name: Unit Tests | |
run: ./gradlew --stacktrace testRelease | |