Skip to content

Commit d077d87

Browse files
committed
Spin up localstack in a GitHub workflow service container
1 parent 29aba27 commit d077d87

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/pr-verifiy.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ on: pull_request
1414
jobs:
1515
build:
1616
runs-on: ubuntu-latest
17+
services:
18+
localstack:
19+
image: localstack/localstack:latest
20+
ports:
21+
- 4566:4566
1722
steps:
1823
- uses: actions/checkout@v3
1924
with:
@@ -23,9 +28,6 @@ jobs:
2328
with:
2429
java-version: 11
2530
distribution: 'adopt'
26-
- name: Setup localstack
27-
run: ./bin/setup_localstack.sh
28-
shell: bash
2931

3032
- name: Verify build
3133
run: ./gradlew clean check --stacktrace

0 commit comments

Comments
 (0)