Skip to content

Commit

Permalink
Start installed PostgreSQL instance on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgrosso committed Sep 12, 2024
1 parent 66cc921 commit bee2ed5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/crosschecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
steps:
- name: Start PostgreSQL on Windows
if: runner.os == 'Windows'
run: net start postgresql-x64-14
run: |
sc.exe config postgresql-x64-14 start=auto
sc.exe start postgresql-x64-14
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Java JDK
Expand Down

0 comments on commit bee2ed5

Please sign in to comment.