This repository was archived by the owner on Mar 12, 2026. It is now read-only.
Extract monte-carlo related files to its dedicated package #431
Workflow file for this run
This file contains hidden or 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: Core Engine Tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - name: Install sbt | |
| run: | | |
| curl -fsSL "https://github.com/sbt/sbt/releases/download/v1.10.7/sbt-1.10.7.tgz" | sudo tar xz -C /usr/local | |
| echo "/usr/local/sbt/bin" >> "$GITHUB_PATH" | |
| - name: Check formatting | |
| run: sbt scalafmtCheckAll | |
| - name: Run tests | |
| run: sbt test |