Skip to content

Commit

Permalink
integration tests to GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
davidangb committed Dec 11, 2023
1 parent 3275e15 commit 49617bd
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/es-int-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Elasticsearch Integration Tests

on:
push:
paths-ignore:
- 'README.md'
pull_request:
branches: [ develop ]
workflow_call:

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 it:test

0 comments on commit 49617bd

Please sign in to comment.