build(deps): bump mockito.version from 5.14.0 to 5.14.2 #258
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
name: Pull request check | |
on: | |
pull_request: | |
jobs: | |
conventional-commits: | |
runs-on: ubuntu-latest | |
name: Check conventional commits | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: wagoid/commitlint-github-action@v6 | |
if: (github.actor!= 'dependabot[bot]') && (contains(github.head_ref, 'dependabot/') == false) | |
build: | |
name: Pull request check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout from Git | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
name: Setup Java | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: maven | |
- name: Run tests | |
run: ./mvnw --no-transfer-progress verify |