Some checks failed
CI Demo / build (push) Successful in 4s
Docker Test / docker-ops (push) Successful in 6s
.NET Test / dotnet-test (push) Failing after 19s
Go Test / go-test (push) Failing after 6s
Java Test / java-hello (push) Successful in 29s
Julia Test / julia-test (push) Failing after 6s
Kotlin Test / kotlin-hello (push) Successful in 42s
Node.js Test / nodejs-test (push) Failing after 6s
Notebook Test / nb-test (push) Failing after 8s
PHP Test / php-test (push) Successful in 36s
Python Test / python-hello (push) Successful in 4s
Rust Test / rust-test (push) Has been cancelled
Scala Test / scala-test (push) Has been cancelled
Swift Test / swift-hello (push) Has been cancelled
R Test / r-cmdcheck (push) Has been cancelled
21 lines
503 B
YAML
21 lines
503 B
YAML
name: Scala Test
|
|
on: [push]
|
|
|
|
jobs:
|
|
scala-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Java (for sbt)
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: '11' # or 17/21 to match your project
|
|
cache: 'sbt' # auto-cache Coursier/Ivy for sbt
|
|
|
|
- name: Set up sbt
|
|
uses: sbt/setup-sbt@v1 # installs sbt
|
|
|
|
- name: Run tests
|
|
run: sbt -batch -v test |