Skip to content

Commit 700bd64

Browse files
authored
Fix issues (#175)
* Drop deprecated `install` from Docker Buildx * Fix typo in array type shape * List modules available
1 parent f1497d2 commit 700bd64

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/smoketest.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212

1313
- name: Set up Docker Buildx
1414
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd
15-
with:
16-
install: true
1715

1816
- name: Build Docker image and store in cache
1917
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ All final assets are built into the image, because the image does not have netwo
1515

1616
Includes PHP extensions: ds, intl
1717

18+
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
19+
1820
### Test runner
1921

2022
Test running a solution is coordinated by a bash script at `bin/run.sh` taking 3 positional arguments:

src/Tracer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ final class Tracer implements TracerInterface
4848
*
4949
* @see https://exercism.org/docs/building/tooling/test-runners/interface#h-top-level
5050
*
51-
* @var array{version: int, status: string, tests: list<Result>, messsage?: string}
51+
* @var array{version: int, status: string, tests: list<Result>, message?: string}
5252
*/
5353
private array $result = [
5454
'version' => 3,

0 commit comments

Comments
 (0)