Skip to content

Commit 1b7e050

Browse files
committed
debug
1 parent e8260bc commit 1b7e050

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/ci_format_checks.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,22 @@ jobs:
6161
set -x
6262
echo needs.find-changes.outputs.python = ${{needs.find-changes.outputs.python}}
6363
64+
- name: test case 1
65+
if: needs.find-changes.outputs.python
66+
run: echo 'yes'
67+
68+
- name: test case 2
69+
if: ${{needs.find-changes.outputs.python == 'false'}}
70+
run: echo 'yes'
71+
72+
- name: test case 3
73+
if: ${{needs.find-changes.outputs.python == false}}
74+
run: echo 'yes'
75+
76+
- name: test case 4
77+
if: ${{needs.find-changes.outputs.python}}
78+
run: echo 'yes'
79+
6480
- name: Check out a copy of the git repository
6581
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6682
with:

0 commit comments

Comments
 (0)