File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -111,18 +111,18 @@ runs:
111
111
fi
112
112
fi
113
113
if [[ "${{runner.os}}" == "macOS" ]]; then
114
- python3 -m venv '${{ github.action_path }} /venv'
115
- source '${{ github.action_path }} /venv/bin/activate'
114
+ python3 -m venv "$GITHUB_ACTION_PATH /venv"
115
+ source "$GITHUB_ACTION_PATH /venv/bin/activate"
116
116
fi
117
- python3 -m pip install -r '${{ github.action_path }} /requirements.txt'
117
+ python3 -m pip install -r "$GITHUB_ACTION_PATH /requirements.txt"
118
118
clang-tools -i ${{ inputs.version }} -b
119
119
120
120
- name : Run cpp-linter
121
121
id : cpp-linter
122
122
shell : bash
123
123
run : |
124
- if [[ "${{runner.os}}" == "macOS" ]];then
125
- source '${{ github.action_path }} /venv/bin/activate'
124
+ if [[ "${{runner.os}}" == "macOS" ]]; then
125
+ source "$GITHUB_ACTION_PATH /venv/bin/activate"
126
126
fi
127
127
cpp-linter \
128
128
--style="${{ inputs.style }}" \
You can’t perform that action at this time.
0 commit comments