Skip to content

match scalatest version used in pekko-testkit #107

match scalatest version used in pekko-testkit

match scalatest version used in pekko-testkit #107

Workflow file for this run

name: Basic checks
on:
pull_request:
push:
branches:
- master
tags-ignore: [ v.* ]
jobs:
check-code-style:
name: Check Code Style
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
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: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.0
- name: Code style check and binary-compatibility check
run: sbt "verifyCodeStyle; mimaReportBinaryIssues"
check-code-compilation:
name: Check Code Compilation
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
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: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- 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: sbt "clean ; +IntegrationTest/compile"
check-docs:
name: Check Docs
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
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: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- 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 "unidoc; docs/paradox"