Files
Test-Runner/.gitea/workflows/scala-test.yml
thecoderatekid fc327dfc32
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
Update .gitea/workflows/scala-test.yml
2025-08-07 20:08:44 +00:00

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