1 parent 3f5cc3f commit dc2a6eaCopy full SHA for dc2a6ea
1 file changed
.github/workflows/pr-review.yml
@@ -24,7 +24,12 @@ jobs:
24
- name: Install linters
25
run: |
26
python -m pip install --upgrade pip
27
- pip install flake8 pylint bandit reviewdog
+ pip install flake8 pylint bandit
28
+
29
+ - name: Install reviewdog
30
+ run: |
31
+ # reviewdog is not a Python package; install the binary using the official installer
32
+ curl -sfL https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b /usr/local/bin v0.13.0
33
34
- name: Determine changed Python files
35
id: changes
0 commit comments