Skip to content

Commit 934dc42

Browse files
committed
added support for cmd specific env vars and auth
1 parent 7772a07 commit 934dc42

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- name: Install PostgreSQL dev libraries on macOS
7171
if: matrix.os == 'macos-latest'
7272
run: |
73-
brew install postgresql
73+
brew install postgresql@14
7474
pip install psycopg2
7575
# End macOS
7676

@@ -79,6 +79,7 @@ jobs:
7979
pip install .
8080
8181
- name: Run tests
82+
shell: ${{ matrix.os == 'windows-latest' && 'pwsh' || 'bash' }}
8283
env:
8384
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
8485
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -90,6 +91,6 @@ jobs:
9091
AWS_REGION: ${{ vars.AWS_REGION }}
9192
AWS_REGIONS: ${{ vars.AWS_REGIONS }}
9293
GCP_PROJECT: ${{ vars.GCP_PROJECT }}
93-
GCP_ZONE: ${{ vars.GCP_ZONE }}
94+
GCP_ZONE: ${{ vars.GCP_ZONE }}
9495
run: |
95-
python3 -m tests.pystackql_tests
96+
python3 -m tests.pystackql_tests

0 commit comments

Comments
 (0)