Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8083ec commit 70b2141Copy full SHA for 70b2141
.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