Skip to content

ci: Refactor CI workflow names #7

ci: Refactor CI workflow names

ci: Refactor CI workflow names #7

Workflow file for this run

---

Check failure on line 1 in .github/workflows/test_pypi.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_pypi.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
name: PyPI
on: [push, release]
verify-current-pypi:
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
pip install pytest
- name: Test package from PyPI
run: |
python -c "import paperscraper"
python -c "import paperscraper.pdf"
python -c "import paperscraper.arxiv"
python -c "import paperscraper.scholar"
python -c "import paperscraper.plotting"
python -c "import paperscraper.pubmed"
python -c "import paperscraper.get_dumps"
python -c "import paperscraper.server_dumps"
python -c "import paperscraper.tests"
python -c "import paperscraper.impact"