Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ jobs:
with:
submodules: recursive
token: ${{ secrets.GH_ACCESS_TOKEN }}

# Authenticate to GCP
- id: 'auth'
uses: 'google-github-actions/auth@v0'
with:
credentials_json: '${{ secrets.DEVOPS_IMAGES_SA_KEY }}'

- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v0'
- run: 'gcloud info'

# Configure docker to use the gcloud command-line tool as a credential helper
- name: Configure Docker
run: |
gcloud auth configure-docker -q

- name: Update
run: sudo apt update
Expand Down
2 changes: 1 addition & 1 deletion ci-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
postgres:
image: postgres:14-alpine
image: gcr.io/fetch-ai-images/subquery-postgres:863ce7d
ports:
- 5432:5432
volumes:
Expand Down