build(deps): bump org.mockito:mockito-core from 5.12.0 to 5.14.2 #2289
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Main CI | |
name: Java CI with Gradle | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
permissions: | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
configure_sonar: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- name: Save Sonar config on PR | |
run: | | |
mkdir -p ./prInfo | |
echo ${{ github.event.number }} > ./prInfo/PR | |
echo ${{ github.base_ref }} > ./prInfo/base_ref | |
echo ${{ github.head_ref }} > ./prInfo/head_ref | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: prInfo | |
path: prInfo/ | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew build --continue | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: ${{ matrix.os }}-test-reports | |
path: | | |
build/test-results/**/*.xml | |
build/jacoco/ | |
kubernetes-integration-tests: | |
runs-on: ubuntu-latest | |
needs: ci | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 #v3.5.0 | |
with: | |
add-job-summary: 'on-failure' | |
add-job-summary-as-pr-comment: 'on-failure' | |
validate-wrappers: true | |
- uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde #v1.10.0 | |
name: Start cluster | |
# service setup disabled along with service test because service binding operator is deprecated, and postgres service isn't available anymore | |
# - name: Setup cluster | |
# run: | | |
# curl -sL https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.26.0/install.sh | bash -s v0.26.0 | |
# kubectl create -f https://operatorhub.io/install/service-binding-operator.yaml | |
# kubectl create -f https://operatorhub.io/install/stable/cloud-native-postgresql.yaml | |
# nb=0 | |
# echo -n "Waiting for operator to show up " | |
# while [ "$nb" != "2" ] | |
# do | |
# echo -n "." | |
# sleep 1 | |
# nb=`kubectl get pods -n operators --no-headers --ignore-not-found | grep Running | wc -l` | |
# done | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Play integration tests | |
run: ./gradlew integrationTest --continue | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: kubernetes-integration-tests-reports | |
path: | | |
build/test-results/**/*.xml | |
build/jacoco/ |