Skip to content

Bump com.gradle:develocity-maven-extension from 1.21.6 to 1.22.1 #584

Bump com.gradle:develocity-maven-extension from 1.21.6 to 1.22.1

Bump com.gradle:develocity-maven-extension from 1.21.6 to 1.22.1 #584

Workflow file for this run

name: Integration Tests
on:
push:
branches:
- '**'
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
#Build with java 11
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Run Integration Tests
run: mvn -Prun-its -B install --file pom.xml
#Build with java 17
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Run Integration Tests
run: mvn -Prun-its -B install --file pom.xml