Skip to content

Commit ec0df24

Browse files
modernize pipeline install methods
1 parent a4a0c6c commit ec0df24

File tree

1 file changed

+2
-24
lines changed

1 file changed

+2
-24
lines changed

.github/workflows/pythonapp.yml

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: python tests+artifacts+release
1+
name: "python tests+artifacts+release"
22

33
on:
44
pull_request:
@@ -12,7 +12,7 @@ on:
1212

1313

1414
jobs:
15-
dist:
15+
dist:
1616
runs-on: ubuntu-latest
1717
name: Python sdist/wheel
1818
steps:
@@ -32,7 +32,6 @@ jobs:
3232
name: dist
3333
path: dist
3434

35-
3635
test:
3736
runs-on: ubuntu-latest
3837
needs: [dist]
@@ -65,27 +64,6 @@ jobs:
6564
run: pytest
6665

6766

68-
jobs:
69-
70-
71-
mypy:
72-
runs-on: ubuntu-latest
73-
74-
name: Python ${{ matrix.python_version }} - dist ${{ matrix.dist }}
75-
steps:
76-
- uses: actions/checkout@v1
77-
- name: Setup python
78-
uses: actions/setup-python@v2
79-
with:
80-
python-version: ${{ matrix.python_version }}
81-
architecture: x64
82-
- uses: actions/download-artifact@v2
83-
with:
84-
name: dist
85-
path: dist
86-
- run: pip install -e . mypy
87-
- run: mypy -m
88-
8967
dist_check:
9068
runs-on: ubuntu-latest
9169
needs: [dist]

0 commit comments

Comments
 (0)