Skip to content

Check code format in CI #2

Check code format in CI

Check code format in CI #2

Workflow file for this run

name: Code Lint
on: [pull_request]
jobs:
format-check:
name: Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Scala
uses: olafurpg/setup-scala@v10
with:
java-version: adopt@1.8
- name: Cache Scala
uses: coursier/cache-action@v5
- name: Format Check
run: sbt scalafmtCheckAll