AJ-1854 add concurrency groups to GH workflows #666
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Elasticsearch Integration Tests | |
on: | |
pull_request: | |
branches: [ develop ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
es-integration-tests: | |
name: Elasticsearch Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- 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" | |