Skip to content

Commit

Permalink
Merge pull request #193 from NASA-AMMOS/feature/fix-postgres-test-apt…
Browse files Browse the repository at this point in the history
…-get

[FIX] Add apt-get update to ensure latest package listing
  • Loading branch information
patkenneally authored May 31, 2022
2 parents 63efc3f + 720d551 commit 9193a3a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
distribution: "temurin"
java-version: "18"
- name: Setup Postgres Client (psql)
run: sudo apt-get install --yes postgresql-client
run: |
sudo apt-get update
sudo apt-get install --yes postgresql-client
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup Gradle
Expand Down

0 comments on commit 9193a3a

Please sign in to comment.