Skip to content

update camunda 8 to v8.6 and switch to spring-boot-starter-camunda-sdk #328

update camunda 8 to v8.6 and switch to spring-boot-starter-camunda-sdk

update camunda 8 to v8.6 and switch to spring-boot-starter-camunda-sdk #328

# This workflow will build a Java project with Maven
name: Continuous Integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main, 'Release-*' ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: ['17','21']
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: 'maven'
- name: Build with Maven Wrapper
run: ./mvnw clean verify