Skip to content

Commit

Permalink
Add libpq-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhauner committed Jul 14, 2023
1 parent da921b0 commit 2eb7457
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install anvil
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil
- name: Install apt dependencies
run: |
sudo apt-get update
sudo apt-get install libpq-dev # Required for Postgres in ./watch.
- name: Run tests in release
run: make test-release
release-tests-windows:
Expand Down Expand Up @@ -143,6 +147,10 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install anvil
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil
- name: Install apt dependencies
run: |
sudo apt-get update
sudo apt-get install libpq-dev # Required for Postgres in ./watch.
- name: Run tests in debug
run: make test-debug
state-transition-vectors-ubuntu:
Expand Down

0 comments on commit 2eb7457

Please sign in to comment.