ci: Add distribution verification checks to nightly wheel upload (#6831) #2
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: coverage | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
report: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Before install | |
run: | | |
sudo apt-get update | |
sudo apt-get install graphviz graphviz-dev | |
- name: Install packages | |
run: | | |
pip install --upgrade pip | |
pip install -r requirements/default.txt -r requirements/test.txt | |
pip install -r requirements/extra.txt | |
pip install . | |
pip list | |
- name: Test NetworkX | |
run: | | |
pytest --cov=networkx --runslow --doctest-modules --durations=20 --pyargs networkx | |
- name: Upload to codecov | |
uses: codecov/codecov-action@v3 |