X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/6b42c2b8c9f9bd666120a2c19b8da509fe477f27..257d392217974a76231e306133288748c7b70786:/action.yml diff --git a/action.yml b/action.yml index 35705e9..282fca4 100644 --- a/action.yml +++ b/action.yml @@ -33,11 +33,12 @@ branding: runs: using: composite steps: - - run: | + - name: black + run: | if [ "$RUNNER_OS" == "Windows" ]; then - python $GITHUB_ACTION_PATH/action/main.py + python $GITHUB_ACTION_PATH/action/main.py | tee -a $GITHUB_STEP_SUMMARY else - python3 $GITHUB_ACTION_PATH/action/main.py + python3 $GITHUB_ACTION_PATH/action/main.py | tee -a $GITHUB_STEP_SUMMARY fi env: # TODO: Remove once https://github.com/actions/runner/issues/665 is fixed.