Skip to content

Commit

Permalink
Merge pull request #436 from openreferral/3.0-fix-tests
Browse files Browse the repository at this point in the history
github actions: build_database: run apt-get update
  • Loading branch information
Bjwebb authored Jun 8, 2023
2 parents bad73e2 + 23e01e0 commit 2dd06ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build_database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ jobs:
# If the MySQL stage above made changes, we need to pull first
- run: git pull
- name: Install Ubuntu libs
run: sudo apt-get install -y graphviz graphviz-dev postgresql-client-12 libpq-dev
run: |
sudo apt-get update
sudo apt-get install -y graphviz graphviz-dev postgresql-client-12 libpq-dev
- name: Install Python libs
run: pip install -r requirements.txt
- name: Install Python Libs for DB work
Expand Down

0 comments on commit 2dd06ea

Please sign in to comment.