Skip to content

Changed directory name to svzerodvisualization & added macos to test #1

Changed directory name to svzerodvisualization & added macos to test

Changed directory name to svzerodvisualization & added macos to test #1

name: Test Visualization Application
on: [push, pull_request]
jobs:
build:
runs-on: [ubuntu-latest, macos-latest]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
- name: Install Graphviz
run: |
sudo apt-get update
sudo apt-get install -y graphviz
- name: Run tests
run: |
pytest tests/test_dirgraph.py