Skip to content

feat: integrate new enterprise start mecanism depending on deployment, closes HYB-567 #340

feat: integrate new enterprise start mecanism depending on deployment, closes HYB-567

feat: integrate new enterprise start mecanism depending on deployment, closes HYB-567 #340

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
JAVA_OPTS: "-Xmx6G"
SBT_OPTS: "-Dsbt.ci=true"
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'sbt'
- name: Test
run: |
sbt \
"all headerCheck scalafmtSbtCheck scalafmtCheckAll" \
"scalafixAll --check" \
"test" \
"scripted"