Skip to content

Link to Persistence docs from plugins sections #111

Link to Persistence docs from plugins sections

Link to Persistence docs from plugins sections #111

Workflow file for this run

name: Check
on:
pull_request:
jobs:
check:
name: Check
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
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: Set up JDK 11
uses: olafurpg/setup-scala@v10
with:
java-version: adopt@1.11.0-9
- name: Cache Coursier cache
uses: coursier/cache-action@v5
- name: Check scalafmt rules, publish BOM locally
run: sbt checkBom
- name: Check dependencies can be pulled
run: sbt update