Skip to content

⬆️ Bump com.graphql-java:graphql-java from 21.3 to 21.5 #58

⬆️ Bump com.graphql-java:graphql-java from 21.3 to 21.5

⬆️ Bump com.graphql-java:graphql-java from 21.3 to 21.5 #58

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-22.04
strategy:
matrix:
include:
- mongodb-version: "5.0"
- mongodb-version: "6.0"
- mongodb-version: "7.0"
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "21"
- 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 }}"