We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 580eb3d commit 7a9fc56Copy full SHA for 7a9fc56
.github/workflows/pull_request.yml
@@ -91,6 +91,15 @@ jobs:
91
check-dependencies:
92
name: Check Dependencies
93
runs-on: ubuntu-latest
94
+ services:
95
+ postgres:
96
+ image: postgres:latest
97
+ env:
98
+ POSTGRES_USER: postgres
99
+ POSTGRES_PASSWORD: postgres
100
+ POSTGRES_DB: postgres
101
+ ports:
102
+ - 5432:5432
103
steps:
104
- name: Checkout PR Branch
105
uses: actions/checkout@v4
@@ -111,7 +120,8 @@ jobs:
111
120
strategy:
112
121
matrix:
113
122
include:
114
- - os: windows-latest
123
+ # reactive once we upgrade to the latest version of pg_query that is windows-compatible
124
+ # - os: windows-latest
115
125
- os: ubuntu-latest
116
126
117
127
- name: Checkout PR branch
0 commit comments