From 5350b22ffeae0e599ecd2eaf478ed048ebf71e50 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Thu, 15 Dec 2022 01:01:59 +0530 Subject: [PATCH] feat: CI: configure and run conductor instance while testing --- .github/workflows/coverage.yml | 3 +++ .github/workflows/linux.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 3f6bfdc..077b1a9 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -68,6 +68,9 @@ jobs: - name: download deps run: make dev-env + env: + LPCONDUCTOR_CREDS_USERNAME: "librepages_api" + LPCONDUCTOR_CREDS_PASSWORD: "longrandomlygeneratedpassword" - name: Apply migrations run: make migrate diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index ce68523..8900faf 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -55,6 +55,9 @@ jobs: - name: download deps run: make dev-env + env: + LPCONDUCTOR_CREDS_USERNAME: "librepages_api" + LPCONDUCTOR_CREDS_PASSWORD: "longrandomlygeneratedpassword" - name: configure GPG key if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'realaravinth/librepages'