Skip to content

Bump io.zeebe:zeebe-test-container from 3.6.0 to 3.6.1 #455

Bump io.zeebe:zeebe-test-container from 3.6.0 to 3.6.1

Bump io.zeebe:zeebe-test-container from 3.6.0 to 3.6.1 #455

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Continuous Integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: ['17', '21'] #Support LTS releases 17 and the latest release supported by Micronaut.
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Set up JDKs with Matrix Build
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: 'gradle'
- name: Build with Gradle Wrapper
run: ./gradlew build --warning-mode=all