Skip to content

Merge branch 'feature/852-spring-boot-3' into dependabot/maven/org.ax… #659

Merge branch 'feature/852-spring-boot-3' into dependabot/maven/org.ax…

Merge branch 'feature/852-spring-boot-3' into dependabot/maven/org.ax… #659

Workflow file for this run

name: CI for special branches
on:
push:
branches:
- '!master'
- '!develop'
- '!release/*'
- 'dependabot/**'
- 'feature/**'
- 'bugfix/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
jdk: ['17.0.8']
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.jdk }}
cache: maven
- name: Prepare Maven Wrapper
run: chmod +x ./mvnw
- name: Build with Maven
run: ./mvnw clean verify -U -B -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
- name: Prepare I-Tests
run: mkdir -p target/jgiven-reports/json
- name: Run I-Tests with Maven
run: ./mvnw integration-test failsafe:verify -Pitest -B -T4
- name: Upload coverage information
uses: codecov/codecov-action@v3
with:
token: "${{ secrets.CODECOV_TOKEN }}"