Skip to content

Commit

Permalink
Add GitHub workflows: integration-tests, CI
Browse files Browse the repository at this point in the history
  • Loading branch information
VitalinaMykoliuk committed Dec 28, 2024
1 parent 4299d7e commit 55d951f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
uses: ./.github/workflows/shared_workflow.yml
with:
python-version: "3.12"
env-vars: |
ENV_VERSION=DEV
env:
ENV_VERSION: ${{ secrets.ENV_VERSION }}

test:
runs-on: ubuntu-latest
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ jobs:
uses: ./.github/workflows/shared_workflow.yml
with:
python-version: "3.x"
env-vars: |
DB_PORT=${{ secrets.DB_PORT }}
DB_NAME=${{ secrets.DB_NAME }}
DB_USER=${{ secrets.DB_USER }}
DB_PASSWORD=${{ secrets.DB_PASSWORD }}
DB_HOST=${{ secrets.DB_HOST }}
STARKNET_NODE_URL=${{ secrets.STARKNET_NODE_URL }}
REDIS_HOST=${{ secrets.REDIS_HOST }}
REDIS_PORT=${{ secrets.REDIS_PORT }}
ENV_VERSION=${{ secrets.ENV_VERSION }}
env:
DB_PORT: ${{ secrets.DB_PORT }}
DB_NAME: ${{ secrets.DB_NAME }}
DB_USER: ${{ secrets.DB_USER }}
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
DB_HOST: ${{ secrets.DB_HOST }}
STARKNET_NODE_URL: ${{ secrets.STARKNET_NODE_URL }}
REDIS_HOST: ${{ secrets.REDIS_HOST }}
REDIS_PORT: ${{ secrets.REDIS_PORT }}
ENV_VERSION: ${{ secrets.ENV_VERSION }}

integration-tests:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 55d951f

Please sign in to comment.