We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8260bc commit 1b7e050Copy full SHA for 1b7e050
1 file changed
.github/workflows/ci_format_checks.yml
@@ -61,6 +61,22 @@ jobs:
61
set -x
62
echo needs.find-changes.outputs.python = ${{needs.find-changes.outputs.python}}
63
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
71
72
+ - name: test case 3
73
+ if: ${{needs.find-changes.outputs.python == false}}
74
75
76
+ - name: test case 4
77
+ if: ${{needs.find-changes.outputs.python}}
78
79
80
- name: Check out a copy of the git repository
81
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
82
with:
0 commit comments