Skip to content

chore(VER) bump v10.4.0 -> v10.5.0; CHANGES #5

chore(VER) bump v10.4.0 -> v10.5.0; CHANGES

chore(VER) bump v10.4.0 -> v10.5.0; CHANGES #5

Workflow file for this run

name: Graphtik
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e .[all]
- name: Test
run: |
# Undo configs in setup.cfg
echo -e '[pytest]\nmarkers: slow' > pytest.ini
pytest --cov=graphtik #--log-level=DEBUG -v
- name: Site
run: |
python setup.py build_sphinx
- name: Wheel
run: |
python setup.py bdist_wheel
- name: Sources
run: |
python setup.py sdist