Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/finish-db-models #7

Merged
merged 15 commits into from
Nov 7, 2020
Prev Previous commit
Next Next commit
Install graphviz depending on platform
  • Loading branch information
JacksonMaxfield committed Nov 6, 2020
commit 531d3f431f2c44fb7117bb6c4cc30e6ff2ffa426
13 changes: 11 additions & 2 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,26 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install graphviz
- name: Install graphviz (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install graphviz libgraphviz-dev -y
- name: Install graphviz (Mac)
if: matrix.os == 'macOS-latest'
run: |
brew install graphviz libgraphviz-dev -y
- name: Install graphviz (Windows)
if: matrix.os == 'windows-latest'
run: |
choco install graphviz libgraphviz-dev -y
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand Down