We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a89b5c commit dd25257Copy full SHA for dd25257
.github/workflows/main.yml
@@ -40,4 +40,4 @@ jobs:
40
41
# Runs a single command using the runners shell
42
- name: Build and test in docker
43
- run: bash ci/run_tests_dockerized ${{ matrix.PHP_VERSION }}
+ run: bash ci/run_tests_dockerized.sh ${{ matrix.PHP_VERSION }}
ci/run_tests renamed to ci/run_tests.sh
ci/run_tests_dockerized renamed to ci/run_tests_dockerized.sh
@@ -19,4 +19,4 @@ fi
19
20
DOCKER_IMAGE="tolerant-php-parser-test-runner:$PHP_VERSION"
21
docker build --build-arg="PHP_VERSION=$PHP_VERSION" --build-arg="COMPOSER_OPTIONS=$COMPOSER_OPTIONS" --tag="$DOCKER_IMAGE" -f ci/Dockerfile .
22
-docker run --rm $DOCKER_IMAGE ci/run_tests
+docker run --rm $DOCKER_IMAGE ci/run_tests.sh
0 commit comments