diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b90d29..dc0d8ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,3 +20,19 @@ jobs: - name: Build with Maven run: mvn -B package -DskipTests + test: + runs-on: ubuntu-latest + needs: build + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + + - name: Test with Maven + run: mvn test +