Skip to content

Commit

Permalink
ci: use postgres 14
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-abrar committed Dec 15, 2022
1 parent a0bdd3a commit 5ff1479
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:
- name: install postgres (linux)
run: |
sudo apt-get update
sudo apt-get install postgresql-13
export PATH=$PATH:/usr/lib/postgresql/13/bin
sudo apt-get install postgresql-14
export PATH=$PATH:/usr/lib/postgresql/14/bin
which pg_ctl
echo "/usr/lib/postgresql/13/bin" >> $GITHUB_PATH
echo "/usr/lib/postgresql/14/bin" >> $GITHUB_PATH
if: matrix.os == 'ubuntu-latest'
- name: install postgres (macos)
run: |
brew update
brew install postgresql@13
brew install postgresql@14
export PATH=$PATH:`brew --prefix`/bin
which pg_ctl
echo "$(brew --prefix)/bin" >> $GITHUB_PATH
Expand Down

0 comments on commit 5ff1479

Please # to comment.