Skip to content

Commit

Permalink
Add unit tests for spark 3.5 profile
Browse files Browse the repository at this point in the history
  • Loading branch information
SirOibaf committed Dec 10, 2024
1 parent 252f266 commit 7a3fea6
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,32 @@ jobs:
- name: Test
working-directory: ./java
run: mvn clean test

unit_tests_spark35:
name: Unit Tests
runs-on: ubuntu-latest

steps:
- name: Set Timezone
run: sudo timedatectl set-timezone UTC

- name: Checkout
uses: actions/checkout@v3

- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: "8"
distribution: "adopt"

- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('java/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Test
working-directory: ./java
run: mvn clean test -Pspark-3.5

0 comments on commit 7a3fea6

Please sign in to comment.