Skip to content

Update sbt-web to 1.5.3 #94

Update sbt-web to 1.5.3

Update sbt-web to 1.5.3 #94

Workflow file for this run

name: Compile & Formatting Check
on:
pull_request:
jobs:
formatting:
runs-on: ubuntu-latest
timeout-minutes: 60
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Scala
uses: olafurpg/setup-scala@v13
with:
java-version: zulu@1.11
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.ivy2/cache
~/.sbt
key: ${{ runner.os }}-cache
- name: Compile and Check Formatting
run: sbt test:compile scalafmtCheckAll