RyanSkraba commented on code in PR #3658:
URL: https://github.com/apache/avro/pull/3658#discussion_r2823501287


##########
.github/workflows/test-lang-java.yml:
##########
@@ -35,137 +35,139 @@ concurrency:
 
 jobs:
   test:
-    name: 'Java Test'
+    name: "Java Test"
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
-        os: 
+        os:
           - ubuntu-latest
           - ubuntu-24.04-arm
     steps:
-      - name: 'Checkout sourcecode'
+      - name: "Checkout sourcecode"
         uses: actions/checkout@v6
 
-      - name: 'Cache Local Maven Repository'
+      - name: "Cache Local Maven Repository"
         uses: actions/cache@v5
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
           restore-keys: |
             ${{ runner.os }}-maven-
 
-      - name: 'Setup Temurin JDK 11, 17 & 21'
+      - name: "Setup Temurin JDK 11, 17 & 21"
         uses: actions/setup-java@v5
         with:
-          distribution: 'temurin'
+          distribution: "temurin"
           java-version: |
             11
             17
             21
 
-      - name: 'Setup Maven 3.9.11'
+      - name: "Setup Maven 3.9.11"
         uses: stCarolas/setup-maven@d6af6abeda15e98926a57b5aa970a96bb37f97d1 # 
v5
         with:
           maven-version: 3.9.11
 
-      - name: 'Install Java Avro Toplevel'
+      - name: "Install Java Avro Toplevel"
         working-directory: ./
         run: mvn -B install -PskipQuality -DskipTests
 
-      - name: 'Java Lint'
+      - name: "Java Lint"
         run: ./build.sh lint
 
-      - name: 'Java Test'
+      - name: "Java Test"
         run: ./build.sh test
 
-      - name: 'Install Java Avro'
+      - name: "Install Java Avro"
         working-directory: .
         run: mvn -B clean install -PskipQuality -DskipTests
 
-      - name: 'Test Reproducible Build'
+      - name: "Test Reproducible Build"
         working-directory: .
         run: mvn clean verify -PskipQuality artifact:compare
 
   interop:
-    name: 'Java Interop'
+    name: "Java Interop"
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
-        os: 
+        os:
           - ubuntu-latest
           - ubuntu-24.04-arm
 
     steps:
       - uses: actions/checkout@v6
 
-      - name: 'Cache Local Maven Repository'
+      - name: "Cache Local Maven Repository"
         uses: actions/cache@v5
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
           restore-keys: |
             ${{ runner.os }}-maven-
 
-      - name: 'Setup Temurin JDK 11, 17 & 21'
+      - name: "Setup Temurin JDK 11, 17 & 21"
         uses: actions/setup-java@v5
         with:
-          distribution: 'temurin'
+          distribution: "temurin"
           java-version: |
             11
             17
             21
 
-      - name: 'Setup Maven 3.9.11'
+      - name: "Setup Maven 3.9.11"
         uses: stCarolas/setup-maven@d6af6abeda15e98926a57b5aa970a96bb37f97d1 # 
v5
         with:
           maven-version: 3.9.11
 
-      - name: 'Setup Python for Generating Input Data'
+      - name: "Setup Python for Generating Input Data"
         uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 
v6.0.0
         with:
-          python-version: '3.12'
+          python-version: "3.12"
 
-      - name: 'Apt Install Compression Libs Required by Python'
+      - name: Setup uv
+        uses: astral-sh/setup-uv@v7

Review Comment:
   ```suggestion
           uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867    
    
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to