We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07d473c commit 5e82713Copy full SHA for 5e82713
1 file changed
.github/workflows/pull_lint.yml
@@ -19,9 +19,12 @@ jobs:
19
- name: Lint
20
run: |
21
docker run \
22
+ --env UID=$(id -u) \
23
+ --env GID=$(id -g) \
24
+ -v "$(pwd):$(pwd)" \
25
+ -w "$(pwd)" \
26
yugabyteci/yb_build_infra_ubuntu2204_x86_64:latest \
27
bash -c '
- sudo -H -u yugabyteci bash -c "
28
set -euo pipefail
29
export PATH=/usr/local/bin:\$HOME/yb-cpplint/cpplint:\$PATH
30
echo ::group::Lint
@@ -34,5 +37,4 @@ jobs:
34
37
echo No base reference: Skipping Lint Step
35
38
exit
36
39
fi
- "
40
'
0 commit comments