Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
toda5603 committed Oct 23, 2023
1 parent d05bb76 commit 4f9d86b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
23 changes: 8 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,18 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.10'
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@master
- name: Setup Python
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: "3.10"
- name: Generate coverage report
env:
PROJECT_HOME: /home/runner/work/pygplib/pygplib
PYTHONPATH: /home/runner/work/pygplib/pygplib
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install python-sat
pip install pyunigen
pip install pyparsing
pip install pytest
pip install pytest-cov
pytest --cov=./ --cov-report=xml
python -m pip install --upgrade pip
python -m pip install tox-gh-actions poetry
- name: Test with tox
run: poetry run tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ with first-order logic of graphs.
We mean by *graphs* graphs with no directed edge, no multiple edge,
no isolated edge, at most one isolated vertex, and no loop.

Installation
============

.. code:: shell-session
$ pip install pygplib
Documentation
=============

Expand Down

0 comments on commit 4f9d86b

Please sign in to comment.