From 9808f79901eef3e97944fa27b3aad5680217594b Mon Sep 17 00:00:00 2001 From: Alexandr Jeliuc Date: Mon, 27 Jan 2025 22:45:56 +0200 Subject: [PATCH] Introduced env vars for run integration tests step --- .github/workflows/integration_testing.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/integration_testing.yml b/.github/workflows/integration_testing.yml index ee68d06..0ef6ba6 100644 --- a/.github/workflows/integration_testing.yml +++ b/.github/workflows/integration_testing.yml @@ -23,5 +23,8 @@ jobs: uses: gradle/gradle-build-action@v2 - name: Run integration tests + env: + TURSO_TOKEN: ${{ secrets.TURSO_TOKEN }} + TURSO_ORGANIZATION: ${{ secrets.TURSO_ORGANIZATION }} continue-on-error: false run: ./gradlew integrationTest