From f8a0ffb4ffcc9eed8108ec41f5b1a491e09385a5 Mon Sep 17 00:00:00 2001 From: Deividas Petraitis Date: Tue, 17 Sep 2024 12:27:09 +0300 Subject: [PATCH] SQS-393 | E2E Tests: Compute liquidity with CoinGecko This PR adds COINGECKO_API_KEY env variable for E2E tests to enable computing liquidity with CoinGecko instead of Numia --- .github/workflows/integration-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 676accd78..6d3e19729 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -43,6 +43,7 @@ jobs: env: SQS_ENVIRONMENTS: ${{ github.event.inputs.environment }} SQS_API_KEY: ${{ secrets.SQS_API_KEY }} + COINGECKO_API_KEY: ${{ secrets.COINGECKO_API_KEY }} scheduled_integration_test: if: github.event_name == 'schedule' @@ -73,3 +74,4 @@ jobs: env: SQS_ENVIRONMENTS: ${{ matrix.environment }} SQS_API_KEY: ${{ secrets.SQS_API_KEY }} + COINGECKO_API_KEY: ${{ secrets.COINGECKO_API_KEY }}