Skip to content

Commit

Permalink
Try changing order of graphviz install
Browse files Browse the repository at this point in the history
  • Loading branch information
hyanwong committed Nov 8, 2023
1 parent 209b26a commit e1aaabe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
uses: actions/checkout@v4

# Install dependencies
- name: Install Graphviz
run: |
sudo apt-get install graphviz
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
Expand All @@ -40,10 +44,6 @@ jobs:
sudo R -e 'install.packages("IRkernel")'
R -e 'IRkernel::installspec()'
- name: Install Graphviz
run: |
sudo apt-get install graphviz
# Build the book
- name: Build the book
run: ./build.sh
Expand Down

0 comments on commit e1aaabe

Please sign in to comment.