Files
Test-Runner/.gitea/workflows/scala-test.yml
thecoderatekid e7d79cf4f7
Some checks failed
CI Demo / build (push) Successful in 3s
Docker Test / docker-ops (push) Successful in 5s
Go Test / go-test (push) Has been cancelled
Java Test / java-hello (push) Has been cancelled
Kotlin Test / kotlin-hello (push) Has been cancelled
Node.js Test / nodejs-test (push) Has been cancelled
PHP Test / php-test (push) Has been cancelled
Python Test / python-hello (push) Has been cancelled
.NET Test / dotnet-test (push) Has been cancelled
Rust Test / rust-test (push) Has been cancelled
Scala Test / scala-test (push) Has been cancelled
Swift Test / swift-hello (push) Has been cancelled
Add .gitea/workflows/scala-test.yml
2025-08-07 18:56:36 +00:00

26 lines
525 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@v3
with:
distribution: 'temurin'
java-version: '11'
- name: Cache sbt deps
uses: actions/cache@v3
with:
path: |
~/.ivy2/cache
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
- name: Run tests
run: sbt test