docs: aligns azure auth version with other packages #3348
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: Gradle Build And Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| cache: gradle | |
| - name: Build with Gradle | |
| run: ./gradlew --no-daemon build -Pjava8=true | |
| - name: Upload Unit Test Results | |
| if: ${{ always() }} | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: Unit Tests | |
| path: | | |
| components/**/build/reports/tests/test/** | |
| components/**/build-test-results/** | |
| - name: Upload a Build Artifact | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: ${{ inputs.componentName }}-drop | |
| path: ./**/build/* |