Bump org.mockito.kotlin:mockito-kotlin from 5.0.0 to 5.2.1 #605
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: Development branches | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build and run tests on JDK 11 | |
steps: | |
# Checkout the code | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Expose branch name | |
run: echo ${{ github.ref }} | |
# Setup the cache | |
- name: Cache .m2 | |
uses: actions/cache@v1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven | |
# Setup JDK and Maven | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
server-id: ossrh | |
server-username: OSS_CENTRAL_USERNAME # env variable for Maven Central | |
server-password: OSS_CENTRAL_PASSWORD # env variable for Maven Central | |
# Prepare | |
- name: Prepare Maven Wrapper | |
run: chmod +x ./mvnw | |
# Build | |
- name: Build with Maven | |
run: ./mvnw clean verify -U -B -T4 | |
# itest | |
- name: Run itest | |
run: ./mvnw integration-test failsafe:verify -Pitest -U -B -T4 | |
# - name: Upload coverage to Codecov | |
# if: github.event_name == 'push' && github.actor != 'dependabot[bot]' | |
# uses: codecov/codecov-action@v1.0.2 | |
# with: | |
# token: ${{secrets.CODECOV_TOKEN}} |