Skip to content

Commit f18acd0

Browse files
committed
add more debugging
1 parent 4de7589 commit f18acd0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: Finding affected tests
2929
runs-on: ubuntu-latest
3030
outputs:
31-
python: ${{ steps.python.outputs.affected }}
31+
python: ${{ steps.python.outputs.AFFECTED }}
3232
steps:
3333
- uses: actions/checkout@v4
3434
with:
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
PYTHON=$(affected .github/workflows/config/python.json)
4444
echo "$PYTHON"
45-
echo "affected=$PYTHON" >> "$GITHUB_OUTPUT"
45+
echo "AFFECTED=$PYTHON" >> "$GITHUB_OUTPUT"
4646
4747
python-lint:
4848
name: Lint Python
@@ -63,6 +63,9 @@ jobs:
6363
# - working-directory: ${{ env.PACKAGE }}
6464
# run: nox -s lint
6565
steps:
66+
- run: echo "$OUTPUTS"
67+
env:
68+
OUTPUTS: "${{ needs.affected.outputs }}"
6669
- run: echo "$AFFECTED"
6770
env:
6871
AFFECTED: "${{ needs.affected.outputs.python }}"

0 commit comments

Comments
 (0)