Skip to content

Commit d5947e8

Browse files
authored
Update python-package.yml
1 parent 196e7d7 commit d5947e8

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,17 @@ jobs:
2323
uses: actions/setup-python@v2
2424
with:
2525
python-version: ${{ matrix.python-version }}
26-
- name: Install dependencies
26+
- name: Install test dependencies
2727
run: |
2828
python -m pip install --upgrade pip
2929
python -m pip install -r requirements-dev.txt
30-
- name: Lint with flake8
30+
- name: Build package
3131
run: |
32-
# stop the build if there are Python syntax errors or undefined names
33-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
32+
python setup.py sdist bdist_wheel
33+
- name: Install package
34+
run: python -m pip install --find-links=dist --no-index --ignore-installed docstring_to_markdown
35+
- name: Pip check
36+
run: python -m pip check
3437
- name: Test with pytest
3538
run: |
3639
pytest

0 commit comments

Comments
 (0)