We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8083ec commit 70b2141Copy full SHA for 70b2141
1 file changed
.github/workflows/reviewdog.yml
@@ -18,11 +18,15 @@ jobs:
18
19
- name: Set up reviewdog
20
run: |
21
- mkdir -p $HOME/bin && curl -sfL https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b $HOME/bin
+ mkdir -p $HOME/bin
22
+ curl -sfL \
23
+ https://github.com/reviewdog/reviewdog/raw/master/install.sh | \
24
+ sh -s -- -b $HOME/bin
25
echo ::add-path::$HOME/bin
26
27
- name: Run flake8
28
env:
29
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
- flake8 --docstring-convention=all | reviewdog -f=pep8 -name=flake8 -reporter=github-check
31
+ flake8 --docstring-convention=all | \
32
+ reviewdog -f=pep8 -name=flake8 -reporter=github-check
0 commit comments