Run Tests with Coverage #4
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: Run Tests with Coverage | |
| on: | |
| workflow_run: | |
| workflows: ["Regenerate NEAR RPC Client (create PR)"] | |
| types: | |
| - completed | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Run tests with Kover | |
| run: ./gradlew koverHtmlReport koverVerify |