Update sbt to 1.10.2 #372
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: MiMa Check | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags-ignore: [ v.* ] | |
jobs: | |
test: | |
name: Build and Test | |
runs-on: ubuntu-22.04 | |
if: github.repository == 'apache/pekko-management' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout GitHub merge | |
if: github.event.pull_request | |
run: |- | |
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch | |
git checkout scratch | |
- name: Setup Java 8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 8 | |
- name: Cache Coursier cache | |
uses: coursier/cache-action@v6 | |
- name: Check code formatted | |
run: sbt +mimaReportBinaryIssues |