Skip to content

CSD-316 new function to convert networkx to GraphData object #6

CSD-316 new function to convert networkx to GraphData object

CSD-316 new function to convert networkx to GraphData object #6

Workflow file for this run

name: Python Unittest on Pull Request
on:
push:
branches:
- '**' # Trigger on any branch push
pull_request:
branches:
- '**' # Trigger on any pull request
jobs:
test:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v4
# Set up Python environment
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
# Install dependencies using pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
# Run unittests
- name: Run unittests
run: |
python -W ignore -m unittest discover