Skip to content

Set up scalafmt

Set up scalafmt #1

Workflow file for this run

name: lint
on:
pull_request:
paths-ignore:
- 'doc/**'
- 'docs/**'
- '*.md'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
- name: run lint
run: sbt -v "+scalafmtCheckAll;scalafmtSbtCheck"