Skip to content

Commit 74d86c6

Browse files
committed
fix(postgres): uninstall pre-installed postgres
fix(postgres): uninstall pre-installed postgres
1 parent 4f233e0 commit 74d86c6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/postgres.yml

+7
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
- uses: actions/checkout@v3
17+
- name: Uninstall Postgres
18+
if: matrix.os == 'ubuntu-latest'
19+
run: |
20+
sudo apt-get remove postgresql postgresql-contrib
21+
sudo apt-get --purge remove postgresql postgresql-contrib
22+
sudo apt-get autoremove
23+
sudo apt-get autoclean
1724
- name: Setup Fluent CI
1825
uses: fluentci-io/setup-fluentci@v5
1926
with:

0 commit comments

Comments
 (0)