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 4de7589 commit f18acd0Copy full SHA for f18acd0
.github/workflows/test.yaml
@@ -28,7 +28,7 @@ jobs:
28
name: Finding affected tests
29
runs-on: ubuntu-latest
30
outputs:
31
- python: ${{ steps.python.outputs.affected }}
+ python: ${{ steps.python.outputs.AFFECTED }}
32
steps:
33
- uses: actions/checkout@v4
34
with:
@@ -42,7 +42,7 @@ jobs:
42
run: |
43
PYTHON=$(affected .github/workflows/config/python.json)
44
echo "$PYTHON"
45
- echo "affected=$PYTHON" >> "$GITHUB_OUTPUT"
+ echo "AFFECTED=$PYTHON" >> "$GITHUB_OUTPUT"
46
47
python-lint:
48
name: Lint Python
@@ -63,6 +63,9 @@ jobs:
63
# - working-directory: ${{ env.PACKAGE }}
64
# run: nox -s lint
65
66
+ - run: echo "$OUTPUTS"
67
+ env:
68
+ OUTPUTS: "${{ needs.affected.outputs }}"
69
- run: echo "$AFFECTED"
70
env:
71
AFFECTED: "${{ needs.affected.outputs.python }}"
0 commit comments