From f4413b68bce94d68cdd07c516a35e8def4bcb1e8 Mon Sep 17 00:00:00 2001 From: Florencia Date: Thu, 27 Jun 2024 23:02:59 +0200 Subject: [PATCH] Fix in ci --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 20df210..447cc1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,13 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt -r requirements-dev.txt -r requirements-test.txt + + # Authenticate to Google Cloud + - id: 'auth' + name: 'Authenticate to Google Cloud' + uses: 'google-github-actions/auth@v1' + with: + credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}' # Run tests - name: Run tests