Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/smoketest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd
with:
install: true

- name: Build Docker image and store in cache
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ All final assets are built into the image, because the image does not have netwo

Includes PHP extensions: ds, intl

Default PHP modules available: Core, ctype, date, dom, fileinfo, filter, hash, iconv, json, libxml, mbstring, pcre, random, Reflection, SimpleXML, sodium, SPL, standard, tokenizer, xml, xmlreader, xmlwriter, zlib
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this comming from a php -m ?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a curated excerpt from Docker build output. I intentionally removed the DB and curl modules.


### Test runner

Test running a solution is coordinated by a bash script at `bin/run.sh` taking 3 positional arguments:
Expand Down
2 changes: 1 addition & 1 deletion src/Tracer.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ final class Tracer implements TracerInterface
*
* @see https://exercism.org/docs/building/tooling/test-runners/interface#h-top-level
*
* @var array{version: int, status: string, tests: list<Result>, messsage?: string}
* @var array{version: int, status: string, tests: list<Result>, message?: string}
*/
private array $result = [
'version' => 3,
Expand Down