Skip to content

Bump org.mockito.kotlin:mockito-kotlin from 5.0.0 to 5.1.0 #188

Bump org.mockito.kotlin:mockito-kotlin from 5.0.0 to 5.1.0

Bump org.mockito.kotlin:mockito-kotlin from 5.0.0 to 5.1.0 #188

Workflow file for this run

name: Build PR
on:
pull_request:
branches: [ main ]
paths-ignore: # do not trigger for changes:
- README.md
- LICENSE
- CHANGELOG.md
- docs/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Required for GitVersion
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: '5.x'
- name: Determine Version
uses: gittools/actions/gitversion/execute@v0
with:
useConfigFile: true
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build test --stacktrace