We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ca0237 commit 231a4b4Copy full SHA for 231a4b4
action.yml
@@ -18,9 +18,6 @@ inputs:
18
runs:
19
using: 'composite'
20
steps:
21
- - id: install-yapf
22
- run: pip install yapf
23
- shell: bash
24
- - id: invoke-yapf
25
- run: yapf --diff --recursive ${{ inputs.source-dir }} ${{ inputs.yapf-args }}
+ - id: install-and-invoke-yapf
+ run: pip install yapf && yapf --diff --recursive ${{ inputs.source-dir }} ${{ inputs.yapf-args }}
26
shell: bash
0 commit comments