Skip to content

Commit af6bda9

Browse files
workflows/test - change test jobs names to tool names
1 parent 56fe305 commit af6bda9

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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' }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
style-test:
10-
name: Style Test
9+
flake8:
10+
name: Flake8
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
@@ -18,8 +18,8 @@ jobs:
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

0 commit comments

Comments
 (0)