Bump org.mockito.kotlin:mockito-kotlin from 4.1.0 to 5.4.0 #236
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
# This workflow will build the sample app and ensure that all functionality works. | |
name: Build sample app | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
sample-app: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up our JDK environment | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Build sample | |
run: | | |
./gradlew :affectedmoduledetector:publishToMavenLocal | |
cd sample | |
./gradlew build | |