ci: expanding testsuite to make sure pypi deployments are valid #51
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: build-and-test | |
on: [push, release] | |
jobs: | |
test-source-install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Install package from source | |
run: pip install -e . | |
- name: Test package from source | |
run: | | |
python -c "import paperscraper" | |
python -m pytest -sv paperscraper | |
verify-current-pypi-install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install package from PyPI | |
run: | | |
python -m pip install --upgrade pip | |
pip install paperscraper | |
- name: Test package from PyPI | |
run: | | |
python -c "import paperscraper" | |
python -m pytest -sv paperscraper | |