finalized TDP table for plugin #32
Workflow file for this run
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 CPU info fetcher | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Setup Firefox | |
| uses: browser-actions/setup-firefox@v1 | |
| - name: Setup Gecko Driver | |
| uses: browser-actions/setup-geckodriver@latest | |
| - name: Test with Gradle | |
| run: | | |
| ./gradlew test -i | |
| - name: Summarize tests results | |
| uses: jeantessier/test-summary-action@v1 | |
| if: ${{ always() }} |