refactor: use standard_lib argument to get_python_lib #23
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: 0 6 1 * * | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
setup: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.5 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.5.10" | |
cache: 'pip' | |
cache-dependency-path: | | |
requirements/development.txt | |
- name: Install dependencies | |
run: | | |
python -m pip install -r requirements/development.txt | |
lint: | |
needs: | |
- setup | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.5 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.5.10" | |
cache: 'pip' | |
cache-dependency-path: | | |
requirements/development.txt | |
- name: Install dependencies | |
run: | | |
python -m pip install -r requirements/development.txt | |
- name: Lint code | |
run: | | |
flake8 --exclude=__init__.py,memory_profiler.py pycallgraph | |
flake8 --ignore=F403 test | |
flake8 examples | |
test: | |
needs: | |
- setup | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.5 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.5.10" | |
cache: 'pip' | |
cache-dependency-path: | | |
requirements/development.txt | |
- name: Install dependencies | |
run: | | |
python -m pip install -r requirements/development.txt | |
- name: Install system dependencies | |
run: sudo apt update -yqq && sudo apt install -yqq graphviz | |
- name: Run tests | |
run: | | |
export PYTHONPATH=$PYTHONPATH:$(pwd) | |
py.test \ | |
--ignore=pycallgraph/memory_profiler.py \ | |
test pycallgraph examples | |
- name: Collect coverage | |
run: | | |
coverage run --source pycallgraph,scripts -m py.test | |
coverage report -m |