Skip to content

Commit

Permalink
Install latest postgres client tools in GHA workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
theandrew168 committed May 4, 2024
1 parent c5d0591 commit cfd1184
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- name: Install latest postgres client tools
run: |
sudo apt install -y postgresql-client-16
- name: Checkout source
uses: actions/checkout@v2
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ jobs:
name: Test
runs-on: ubuntu-latest
steps:
- name: Install latest postgres client tools
run: |
sudo apt install -y postgresql-client-16
- name: Checkout source
uses: actions/checkout@v2
- name: Start containers
Expand Down

0 comments on commit cfd1184

Please sign in to comment.