Skip to content

build(deps): bump spring-boot.version from 3.3.4 to 3.3.5 #1396

build(deps): bump spring-boot.version from 3.3.4 to 3.3.5

build(deps): bump spring-boot.version from 3.3.4 to 3.3.5 #1396

Workflow file for this run

name: Development branches
on:
pull_request:
push:
branches:
- '*'
- '**/*'
- '!master'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 17
cache: maven
- name: Prepare mvnw
run: chmod +x ./mvnw
- name: Build
run: ./mvnw clean package -ntp
- name: Run integration tests and generate coverage reports
run: ./mvnw -Pitest verify failsafe:verify -ntp
- name: Upload coverage to Codecov
if: github.event_name == 'push' && github.actor != 'dependabot[bot]'
uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}}
- name: Upload test coverage to Codacy
if: github.event_name == 'push' && github.actor != 'dependabot[bot]'
run: bash <(curl -Ls https://coverage.codacy.com/get.sh)
env:
CODACY_PROJECT_TOKEN: "${{secrets.CODACY_PROJECT_TOKEN}}"