Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/CI-CD_Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@ jobs:
CUSTOM_JWT_SECRET_KEY=${{ secrets.JWT_SECRET_KEY }}
CUSTOM_JWT_ACCESS_TOKEN_EXPIRATION_SECONDS=3600
EOF
- name: Export .env into runner env
working-directory: backend
run: |
while IFS= read -r line; do
[[ -z "$line" || "$line" =~ ^# ]] && continue
echo "$line" >> $GITHUB_ENV
done < .env

- name: Run unit, and domain tests
run: ${{ matrix.gradle_cmd }} clean test
Expand Down
Loading