This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
Update sbt-scalajs to 1.15.0 #369
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Scala CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Scala | |
uses: olafurpg/setup-scala@v13 | |
with: | |
java-version: adopt@1.11 | |
- name: version | |
run: node --version | |
- name: Checking your code format | |
run: sbt scalafmtCheckAll | |
- name: Run tests | |
run: sbt -J-Xmx4G -J-Xms4G test |