Skip to content

Update sbt-scalajs-crossproject to 1.3.2 #382

Update sbt-scalajs-crossproject to 1.3.2

Update sbt-scalajs-crossproject to 1.3.2 #382

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 100
- name: Fetch tags
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
- name: Setup Scala
uses: olafurpg/setup-scala@v13
- name: Checking your code format
run: sbt +scalafmtCheck
- name: Cache dependencies
uses: actions/[email protected]
with:
path: ~/.cache/coursier/v1
key: ${{ runner.os }}-coursier-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }}
restore-keys: ${{ runner.os }}-coursier-
- name: Cache .sbt
uses: actions/[email protected]
with:
path: ~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }}
restore-keys: ${{ runner.os }}-sbt-
- name: Run tests
run: |
sbt +test