Skip to content

CORE-69: Minor and patch updates - sbt-assembly to 2.3.1 - spring-web to 6.2.2 - sbt-scalafmt to 2.5.4 - scalafmt-core to 3.8.5 - scala-library to 2.13.16 - sbt-scoverage to 2.3.0 #1171

CORE-69: Minor and patch updates - sbt-assembly to 2.3.1 - spring-web to 6.2.2 - sbt-scalafmt to 2.5.4 - scalafmt-core to 3.8.5 - scala-library to 2.13.16 - sbt-scoverage to 2.3.0

CORE-69: Minor and patch updates - sbt-assembly to 2.3.1 - spring-web to 6.2.2 - sbt-scalafmt to 2.5.4 - scalafmt-core to 3.8.5 - scala-library to 2.13.16 - sbt-scoverage to 2.3.0 #1171

Workflow file for this run

name: Elasticsearch Integration Tests
on:
push:
branches: [ develop ]
paths-ignore:
- 'README.md'
pull_request:
branches: [ develop ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
es-integration-tests:
name: Elasticsearch Integration Tests
runs-on: ubuntu-latest
steps:
- uses: sbt/setup-sbt@v1
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'sbt'
- name: Start Elasticsearch
run: ./docker/run-es.sh start
- name: Execute Tests
run: sbt clean "IntegrationTest / test"