Is there any way to see the error log that happens in the pipeline?
Here's my YAML file
# This is a sample build configuration for PHP.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Dockerhub as your build environment.
image: phpunit
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- composer install
- phpunit --bootstrap ./autoload.php --no-configuration src/tests
The build is failing but when I do the exact command in my development - "phpunit --bootstrap ./autoload.php --no-configuration src/tests". It works properly.
Having able to see the logs will really help.