Skip to content

Commit 1c6c047

Browse files
Merge pull request #59 from dapr/update/deps
Quality of Life improvements
2 parents 86a5a61 + 147ce35 commit 1c6c047

File tree

6 files changed

+218
-43
lines changed

6 files changed

+218
-43
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ jobs:
8686
run: sleep 10
8787
- name: Execute Tests
8888
run: |
89-
STATUSCODE=$(curl --silent --output /dev/stderr --write-out "%{http_code}" http://localhost:9502/do_tests)
89+
STATUSCODE=$(curl --silent --output /tmp/test-results.json --write-out "%{http_code}" http://localhost:9502/do_tests)
90+
cat /tmp/test-results.json | jq -C .
9091
if test $STATUSCODE -ne 200; then
9192
docker-compose logs dev
9293
exit 1

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"docker-compose rm -fv"
5050
],
5151
"integration-tests": [
52-
"curl localhost:4902/do_tests"
52+
"curl localhost:9502/do_tests"
5353
],
5454
"lint": "./vendor/bin/psalm"
5555
}

composer.lock

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

images/tests.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:labs
2-
# withinboredom/php-base-min == docker build -t withinboredom/php-base-min --target base -f images/tests.Dockerfile .
2+
# withinboredom/php-base-min == docker build --pull -t withinboredom/php-base-min --target base -f images/tests.Dockerfile .
33
FROM php:8.0-fpm AS base
44
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
55
RUN apt-get update && apt-get install -y wget git unzip && apt-get clean

0 commit comments

Comments
 (0)