Skip to content

Commit c43708f

Browse files
committed
Merge branch 'main' of github.com:krassowski/docstring-to-markdown into main
2 parents b9252ff + 37b3513 commit c43708f

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/python-package.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,19 @@ 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: |
28-
python -m pip install --upgrade pip
28+
python -m pip install --upgrade pip wheel
2929
python -m pip install -r requirements-dev.txt
30-
- name: Lint with flake8
31-
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
30+
- name: Temporary installation
31+
run: python -m pip install -e .
3432
- name: Test with pytest
3533
run: |
3634
pytest
35+
- name: Build package
36+
run: |
37+
python setup.py sdist bdist_wheel
38+
- name: Install package
39+
run: python -m pip install --find-links=dist --no-index --ignore-installed docstring_to_markdown
40+
- name: Pip check
41+
run: python -m pip check

0 commit comments

Comments
 (0)