Skip to content

Bump org.mockito:mockito-core from 5.12.0 to 5.13.0 #150

Bump org.mockito:mockito-core from 5.12.0 to 5.13.0

Bump org.mockito:mockito-core from 5.12.0 to 5.13.0 #150

Workflow file for this run

# This workflow will build and test a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Tests
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- unlabeled
jobs:
Java:
strategy:
matrix:
java: ['17','21']
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assemble
- name: Run Tests
run: ./gradlew check