Skip to content

chore(deps): bump org.mockito:mockito-junit-jupiter from 5.11.0 to 5.12.0 in the test-dependencies group #490

chore(deps): bump org.mockito:mockito-junit-jupiter from 5.11.0 to 5.12.0 in the test-dependencies group

chore(deps): bump org.mockito:mockito-junit-jupiter from 5.11.0 to 5.12.0 in the test-dependencies group #490

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17', '21']
name: Build on Java ${{ matrix.java }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup java
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Build
run: ./mvnw -B package -Pcli
- name: Generate Java wrapper
run: ./generate-java-wrapper.sh
- name: Test
run: ./mvnw -B clean verify
- name: Check for generator results
run: |
git status --porcelain
git diff --exit-code