8000 Update sbt-buildinfo to 0.13.1 in main · http4s/rho@a64dc25 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update sbt-buildinfo to 0.13.1 in main #803

Update sbt-buildinfo to 0.13.1 in main

Update sbt-buildinfo to 0.13.1 in main #803

Workflow file for this run

name: Binary Compatibility
on:
push:
branches: [ master, main, series/* ]
pull_request:
branches: [ master, main, series/* ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [1.14]
scala: [2.13.8]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache Coursier
uses: actions/cache@v1
with:
path: ~/.cache/coursier
key: sbt-coursier-cache
- name: Cache SBT
uses: actions/cache@v1
with:
path: ~/.sbt
key: sbt-${{ hashFiles('**/build.sbt') }}
- name: Check Binary Compatability
run: sbt ++${{ matrix.scala }} mimaReportBinaryIssues
0