Skip to content

Helm chart add support for RESTHeart v9.x #73

Helm chart add support for RESTHeart v9.x

Helm chart add support for RESTHeart v9.x #73

Workflow file for this run

# This workflow build and test pull requests
name: Build Pull Request
on:
pull_request:
branches:
- "*"
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
mongodb-version: ["6.0", "7.0", "8.0"]
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- name: Set up JDK 25
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "25"
cache: "maven"
- name: Build and Test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
run: |
mvn -B clean verify -Dmongodb.version="${{ matrix.mongodb-version }}"