-
Notifications
You must be signed in to change notification settings - Fork 36
58 lines (49 loc) · 1.82 KB
/
integration-tests-dynamodb.yml
File metadata and controls
58 lines (49 loc) · 1.82 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Integration Tests for DynamoDB
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
tags-ignore: [ v.* ]
jobs:
test-dynamodb:
name: Run DynamoDB tests
runs-on: Akka-Default
if: github.repository == 'akka/akka-projection'
strategy:
fail-fast: false
matrix:
include:
# - { jdkVersion: "1.11.0", jvmName: "temurin:1.11.0", extraOpts: '-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
- { jdkVersion: "1.17.0", jvmName: "temurin:1.17.0", extraOpts: '' }
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
fetch-depth: 0
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Cache Coursier cache
# https://github.com/coursier/cache-action/releases
# v7.0.0
uses: coursier/cache-action@bebeeb0e6f48ebad66d3783946588ecf43114433
- name: Set up JDK ${{ matrix.jdkVersion }}
# https://github.com/coursier/setup-action/releases
# v1.3.0
uses: coursier/setup-action@70323223454ac2a9eb2de46f389b4d045cbcdea5
with:
jvm: ${{ matrix.jvmName }}
- name: Run akka/github-actions-scripts
uses: akka/github-actions-scripts/setup_global_resolver@main
- name: Start DynamoDB
run: |-
docker compose -f docker-files/docker-compose-dynamodb.yml up --wait
- name: Run integration tests with with Scala and Java ${{ matrix.jdkVersion }}
run: |-
sbt akka-projection-dynamodb-integration/test -Dakka.warn-on-no-license-key=false