We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 252f266 commit 7a3fea6Copy full SHA for 7a3fea6
.github/workflows/java.yml
@@ -60,3 +60,32 @@ jobs:
60
- name: Test
61
working-directory: ./java
62
run: mvn clean test
63
+
64
+ unit_tests_spark35:
65
+ name: Unit Tests
66
+ runs-on: ubuntu-latest
67
68
+ steps:
69
+ - name: Set Timezone
70
+ run: sudo timedatectl set-timezone UTC
71
72
+ - name: Checkout
73
+ uses: actions/checkout@v3
74
75
+ - name: Set up JDK 8
76
+ uses: actions/setup-java@v3
77
+ with:
78
+ java-version: "8"
79
+ distribution: "adopt"
80
81
+ - name: Cache local Maven repository
82
+ uses: actions/cache@v2
83
84
+ path: ~/.m2/repository
85
+ key: ${{ runner.os }}-maven-${{ hashFiles('java/pom.xml') }}
86
+ restore-keys: |
87
+ ${{ runner.os }}-maven-
88
89
+ - name: Test
90
+ working-directory: ./java
91
+ run: mvn clean test -Pspark-3.5
0 commit comments