File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,19 +12,19 @@ jobs:
1212 runs-on : ubuntu-latest
1313 steps :
1414 - uses : actions/checkout@v2
15- - name : Wait for Style Test
15+ - name : Wait for Flake8 Test
1616 id : wait1
1717 uses : fountainhead/action-wait-for-check@v1.0.0
1818 with :
1919 token : ${{ secrets.GITHUB_TOKEN }}
20- checkName : " Style Test "
20+ checkName : " Flake8 "
2121 ref : ${{ github.event.push_request.head.sha || github.sha }}
22- - name : Wait for Types Test
22+ - name : Wait for mypy Test
2323 id : wait2
2424 uses : fountainhead/action-wait-for-check@v1.0.0
2525 with :
2626 token : ${{ secrets.GITHUB_TOKEN }}
27- checkName : " Types Test "
27+ checkName : " mypy "
2828 ref : ${{ github.event.push_request.head.sha || github.sha }}
2929 outputs :
3030 conclusion : ${{ steps.wait1.outputs.conclusion == 'success' && steps.wait2.outputs.conclusion == 'success' }}
Original file line number Diff line number Diff line change 66 workflow_dispatch :
77
88jobs :
9- style-test :
10- name : Style Test
9+ flake8 :
10+ name : Flake8
1111 runs-on : ubuntu-latest
1212 steps :
1313 - uses : actions/checkout@v2
1818 python -m pip install flake8
1919 python -m flake8 --max-line-length=120 faapi
2020
21- types-test :
22- name : Types Test
21+ mypy :
22+ name : mypy
2323 runs-on : ubuntu-latest
2424 steps :
2525 - uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments