1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
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
timeout-minutes: 30
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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 .[default,extra,test]
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
|