Update mockito-core to 5.15.2 #483
Workflow file for this run
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: CI | |
on: | |
push: | |
paths-ignore: | |
- '*.md' | |
branches: | |
- main | |
pull_request: | |
jobs: | |
scala: | |
strategy: | |
fail-fast: false # remove when PR is finished, just to make sure we don't make regression | |
matrix: | |
JDK: [ 8, 17 ] | |
os: | |
- ubuntu-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Ignore line ending differences in git | |
if: contains(runner.os, 'windows') | |
shell: bash | |
run: git config --global core.autocrlf false | |
- name: checkout the repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.JDK }} | |
distribution: temurin | |
cache: sbt | |
- name: Install sbt | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/apt/sources.list.d/sbt.list | |
echo "deb https://repo.scala-sbt.org/scalasbt/debian /" | sudo tee /etc/apt/sources.list.d/sbt_old.list | |
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x99E82A75642AC823" | sudo apt-key add | |
sudo apt-get update | |
sudo apt-get install sbt | |
- name: run tests | |
run: sbt generateXMLFiles test | |
- name: run sbt-tests | |
run: sbt prepareScripted scripted |