Skip to content

Commit

Permalink
Merge pull request #17 from tj-actions/fix/error-with-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 authored Nov 29, 2023
2 parents cda8042 + a13f903 commit 1ec795e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, ubuntu-20.04, macos-latest, macos-11, macos-13, windows-latest]
postgresql_version: [10, 11, 12, 14, 15]
platform: [ubuntu-latest, macos-latest, windows-latest]
postgresql_version: [11, 12, 14, 15]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ if [[ "$(uname -s)" == "Linux" ]]; then
elif [[ "$(uname -s)" == "NT"* ]] || [[ "$(uname -s)" == "MINGW"* ]] || [[ "$(uname -s)" == *"MSYS"* ]]; then
choco install "postgresql$INPUT_POSTGRESQL_VERSION" -y --no-progress --use-download-cache
elif [[ "$(uname -s)" == "Darwin" ]]; then
brew update
brew install "postgresql@$INPUT_POSTGRESQL_VERSION"
HOMEBREW_NO_AUTO_UPDATE=1 brew install --force "postgresql@$INPUT_POSTGRESQL_VERSION"
else
echo "Unsupported OS"
exit 1
Expand Down

0 comments on commit 1ec795e

Please sign in to comment.