-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added working directory for Yaml validation job #70
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On aurait peut-être pu mettre le default en fait pour simplifier https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#defaultsrunworking-directory
.github/workflows/php-app.yml
Outdated
@@ -530,7 +530,7 @@ jobs: | |||
working-directory: ${{ inputs.working-directory }} | |||
|
|||
- name: Yaml validation | |||
run: php ./internals/scripts/YamlLint.php | |||
run: php ${{ inputs.working-directory }}/internals/scripts/YamlLint.php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run: php ${{ inputs.working-directory }}/internals/scripts/YamlLint.php | |
working-directory: ${{ inputs.working-directory }} | |
run: php ./internals/scripts/YamlLint.php |
added working directory for Yaml validation job