We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd0d9a commit f0cbc26Copy full SHA for f0cbc26
.github/workflows/test-pipelines.yml
@@ -69,11 +69,11 @@ jobs:
69
70
- name: Run ${{ matrix.pipeline.name }} Pipeline
71
id: run_pipeline
72
- working-directory: ${{ matrix.pipeline.path }}
73
continue-on-error: true
74
run: |
75
echo "Running ${{ matrix.pipeline.name }} pipeline..."
76
- python ${{ matrix.pipeline.file }}
+ cd ${{ matrix.pipeline.path }}
+ PYTHONPATH=$GITHUB_WORKSPACE:$PYTHONPATH python ${{ matrix.pipeline.file }}
77
78
- name: Check pipeline result
79
if: steps.run_pipeline.outcome == 'failure'
0 commit comments