Skip to content

docs: refer to cloud agent example #39

docs: refer to cloud agent example

docs: refer to cloud agent example #39

Workflow file for this run

name: Unit tests
on:
workflow_dispatch:
push:
branches:
- "main"
pull_request:
jobs:
build-and-unit-tests:
name: "Build and unit tests"
runs-on: ubuntu-latest
if: ${{ !contains(github.event.pull_request.title, '[skip ci]') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Setup Java and Scala
uses: olafurpg/setup-scala@v14
with:
java-version: [email protected]
- name: Cache sbt
uses: coursier/[email protected]
- name: Compile and test
run: sbt compile test