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
Remove "yes" command to install commands
  • Loading branch information
JacksonMaxfield committed Nov 6, 2020
commit 70099a763412fe6cf878627c296e021bebdcb9b9
10 changes: 5 additions & 5 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- name: Install graphviz (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install graphviz libgraphviz-dev -y
sudo apt-get install graphviz libgraphviz-dev
- name: Install graphviz (Mac)
if: matrix.os == 'macOS-latest'
run: |
brew install graphviz libgraphviz-dev -y
brew install graphviz libgraphviz-dev
- name: Install graphviz (Windows)
if: matrix.os == 'windows-latest'
run: |
choco install graphviz libgraphviz-dev -y
choco install graphviz libgraphviz-dev
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -48,7 +48,7 @@ jobs:
python-version: 3.8
- name: Install graphviz
run: |
sudo apt-get install graphviz libgraphviz-dev -y
sudo apt-get install graphviz libgraphviz-dev
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -70,7 +70,7 @@ jobs:
python-version: 3.8
- name: Install graphviz
run: |
sudo apt-get install graphviz libgraphviz-dev -y
sudo apt-get install graphviz libgraphviz-dev
- name: Install Dependencies
run: |
pip install --upgrade pip
Expand Down