File tree Expand file tree Collapse file tree 1 file changed +17
-13
lines changed Expand file tree Collapse file tree 1 file changed +17
-13
lines changed Original file line number Diff line number Diff line change @@ -48,20 +48,24 @@ jobs:
48
48
name : Lint Python
49
49
needs : affected
50
50
runs-on : ubuntu-latest
51
- strategy :
52
- matrix :
53
- affected : ${{ fromJson(needs.affected.outputs.python) }}
54
- env :
55
- PACKAGE : ${{ toJson(matrix.affected.packages) }}
51
+ # strategy:
52
+ # matrix:
53
+ # affected: ${{ fromJson(needs.affected.outputs.python) }}
54
+ # env:
55
+ # PACKAGE: ${{ toJson(matrix.affected.package) }}
56
+ # steps:
57
+ # - uses: actions/checkout@v4
58
+ # - uses: actions/setup-python@v5
59
+ # with:
60
+ # python-version: '3.12'
61
+ # - run: pip install nox
62
+ # - run: echo "$PACKAGE"
63
+ # - working-directory: ${{ env.PACKAGE }}
64
+ # run: nox -s lint
56
65
steps :
57
- - uses : actions/checkout@v4
58
- - uses : actions/setup-python@v5
59
- with :
60
- python-version : ' 3.12'
61
- - run : pip install nox
62
- - run : echo "$PACKAGE"
63
- - working-directory : ${{ env.PACKAGE }}
64
- run : nox -s lint
66
+ - run : echo "$AFFECTED"
67
+ env :
68
+ AFFECTED : " ${{ needs.affected.outputs.python }}"
65
69
66
70
# python-test:
67
71
# name: Test Python
You can’t perform that action at this time.
0 commit comments