[IconPack] Replace code snippet tooltip on Package and IconPack name … #504
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: Test coverage | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - name: Generate test coverage | |
| shell: bash | |
| run: | | |
| COVERAGE=$(./gradlew sdk:test:coverage:koverLog | grep "application line coverage:" | tail -n1 | cut -d ":" -f 2 | tr -d '[:space:]%') | |
| echo "COVERAGE=$COVERAGE" | |
| echo "COVERAGE=$COVERAGE" >> $GITHUB_ENV | |
| - name: Update dynamic badge gist | |
| uses: schneegans/dynamic-badges-action@v1.8.0 | |
| with: | |
| auth: ${{ secrets.GIST_SECRET }} | |
| gistID: ae91ef6fa6f1837ef39b4f4ac21e91d2 | |
| filename: valkyrie-coverage.json | |
| label: coverage | |
| message: ${{ env.COVERAGE }}% | |
| valColorRange: ${{ env.COVERAGE }} | |
| minColorRange: 0 | |
| maxColorRange: 100 |