-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1.15 KB
/
Copy pathintegration.yml
File metadata and controls
39 lines (36 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Integration Tests
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
inputs:
server_image:
description: Fully qualified TrogonEventStore container image
required: false
default: ghcr.io/trogonstack/trogoneventstore:ci
type: string
permissions:
contents: read
jobs:
integration:
name: Integration
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
with:
persist-credentials: false
- name: Set up Java
uses: actions/setup-java@cf277c60eb25467037889841efdb72551f06f6c3 # v4.7.1
with:
distribution: temurin
java-version: "21"
- name: Set up Gradle
uses: gradle/actions/setup-gradle@ed408507eac070d1f99cc633dbcf757c94c7933a # v4.4.4
- name: Run single-node integration tests
env:
TROGON_EVENTSTORE_IMAGE: ${{ inputs.server_image || 'ghcr.io/trogonstack/trogoneventstore:ci' }}
run: ./gradlew ci --tests StreamsTests --tests PersistentSubscriptionsTests --tests TelemetryTests