Skip to content

Commit

Permalink
Add windows on unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
fbrodrigorezino committed Jan 31, 2022
1 parent fea7518 commit 6aab473
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ jobs:
- uses: actions/checkout@v2
- name: Set up Graphviz
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
echo $RUNNER_OS
if [ "$RUNNER_OS" == "LINUX" ]; then
sudo apt-get install -y graphviz
elif [ "$RUNNER_OS" == "Windows" ]; then
echo "Graphviz tests will now run on Windows"
else
echo "Graphviz tests will only run for ubuntu-latest"
fi
shell: bash
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand Down

0 comments on commit 6aab473

Please sign in to comment.