Skip to content

redirect current to versioned docs (#227) #604

redirect current to versioned docs (#227)

redirect current to versioned docs (#227) #604

Workflow file for this run

name: Basic checks
permissions: {}
on:
pull_request:
push:
branches:
- main
- migration-tool # remove before merging to main
tags-ignore: [ v.* ]
jobs:
check-code-style:
name: Check Code Style
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
fetch-depth: 0
fetch-tags: true
- 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 11
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.0
- name: Code style check and binary-compatibility check
# Run locally with: sbt 'verifyCodeFmt ; mimaReportBinaryIssues'
run: sbt "; verifyCodeFmt; mimaReportBinaryIssues"
check-code-compilation:
name: Check Code Compilation
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- 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 11
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.0
- name: Compile all code with fatal warnings for Java 11, Scala 2.12 and Scala 2.13
# Run locally with: sbt 'clean ; +Test/compile ; +It/compile'
run: sbt "; Test/compile; It/compile"
check-docs:
name: Check Docs
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- 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 11
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.0
- name: Create all API docs for artifacts/website and all reference docs
run: sbt docs/paradox