some small updates with kotlin client code so that it converts to swi… #68
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: TestPullRequest | |
on: | |
pull_request: | |
branches: master | |
workflow_dispatch: | |
jobs: | |
test_project: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Make gradlew executable | |
run: chmod +x ./gradlew | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Run Tests | |
run: ./gradlew test | |
- uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: commitTestResults | |
path: | | |
build/reports/tests/** | |
*/build/reports/tests/** | |
retention-days: 10 |