This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
Merge pull request #114 from kristinlam/main #39
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
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.6, 3.8] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install graphviz_support dependencies | |
run: | | |
sudo apt install graphviz | |
pip install extensions/graphviz_support | |
- name: Run graphviz_support tests | |
run: | | |
python -m extensions.graphviz_support.graphviz_support.tests.test_lg_graphviz_api |