We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a000494 + 0c0f049 commit aff7312Copy full SHA for aff7312
1 file changed
.github/workflows/flake8.yml
@@ -4,15 +4,18 @@ on:
4
pull_request_target:
5
paths:
6
- '*.py'
7
+ workflow_dispatch:
8
9
jobs:
10
flake8_py3:
11
runs-on: ubuntu-latest
12
steps:
13
- name: Setup Python
- uses: actions/setup-python@v1
14
+ uses: actions/setup-python@v2
15
- name: Checkout
- uses: actions/checkout@master
16
+ uses: actions/checkout@v2
17
+ with:
18
+ ref: ${{ github.event.pull_request.head.sha }}
19
- name: Install flake8
20
run: pip install flake8
21
- name: Run flake8
0 commit comments