Skip to content

bump: sbt 1.9.4 (was 1.9.3) #643

bump: sbt 1.9.4 (was 1.9.3)

bump: sbt 1.9.4 (was 1.9.3) #643

Workflow file for this run

name: Basic checks
on:
pull_request:
push:
branches:
- main
- release-*
tags-ignore: [ v.* ]
permissions:
contents: read
jobs:
check-code-style:
name: Check Code Style
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/[email protected]
with:
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
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: Cache Coursier cache
uses: coursier/[email protected]
- name: Set up JDK 11
uses: coursier/[email protected]
with:
jvm: temurin:1.11.0
- name: Code style check, compilation and binary-compatibility check
run: sbt "scalafmtCheckAll;headerCheckAll;+Test/compile;+IntegrationTest/compile;mimaReportBinaryIssues"
check-docs:
name: Check Docs
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/[email protected]
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: Cache Coursier cache
uses: coursier/[email protected]
- name: Set up JDK 17
uses: coursier/[email protected]
with:
jvm: temurin:1.17.0
- name: Create all API docs for artifacts/website and all reference docs
run: sbt "unidoc; docs/paradox"