Skip to content

Commit 4de7589

Browse files
committed
debug strategy matrix
1 parent 71b67e0 commit 4de7589

File tree

1 file changed

+17
-13
lines changed

1 file changed

+17
-13
lines changed

.github/workflows/test.yaml

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,24 @@ jobs:
4848
name: Lint Python
4949
needs: affected
5050
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
5665
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 }}"
6569

6670
# python-test:
6771
# name: Test Python

0 commit comments

Comments
 (0)