We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cf526a commit 829dac0Copy full SHA for 829dac0
1 file changed
.github/workflows/ci.yml
@@ -81,18 +81,26 @@ jobs:
81
run: |
82
localstack logs
83
84
- - name: Stop LocalStack
+ - name: Ensure Docker is available for Testcontainers
85
86
- localstack stop
+ sudo systemctl start docker || true
87
+ docker version
88
+ docker info
89
90
- name: Run Testcontainers tests
91
env:
92
AWS_ACCESS_KEY_ID: test
93
AWS_SECRET_ACCESS_KEY: test
94
AWS_REGION: us-east-1
95
+ DOCKER_HOST: unix:///var/run/docker.sock
96
97
mvn test -Dtest=dev.ancaghenade.shipmentlistdemo.integrationtests.ShipmentServiceIntegrationTest
98
99
+ - name: Stop LocalStack
100
+ if: always()
101
+ run: |
102
+ localstack stop
103
+
104
- name: Send a Slack notification
105
if: failure() || github.event_name != 'pull_request'
106
uses: ravsamhq/notify-slack-action@v2
0 commit comments