-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 864 Bytes
/
mima.yml
File metadata and controls
33 lines (31 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Mima
on:
workflow_call:
inputs:
java-version:
required: false
type: string
default: "11"
java-opts:
required: false
type: string
default: ""
jobs:
mima:
runs-on: ubuntu-24.04
env:
JAVA_OPTS: ${{ inputs.java-opts }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0 # checkout tags so that dynver works properly (we need the version for MiMa)
- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: ${{ inputs.java-version }}
cache: 'sbt'
- uses: sbt/setup-sbt@3e125ece5c3e5248e18da9ed8d2cce3d335ec8dd # v1, specifically v1.1.14
- name: Check MiMa # disable for major releases
run: sbt -v mimaReportBinaryIssues