diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 78292b7..947bcc6 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -68,6 +68,9 @@ jobs: name: Test Docker Image runs-on: ubuntu-latest needs: build + permissions: + contents: read + packages: write steps: - name: Check disk space run: df -h @@ -111,11 +114,15 @@ jobs: docker run \ -d \ --name backend-backend \ - -e PORT=8765 \ - -e ENVIRONMENT=dev \ - -e TESTING=0 \ -p 8004:8765 \ ${{ env.IMAGE }}:latest + env: + DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY }} + DEEPSEEK_API_URL: ${{ secrets.DEEPSEEK_API_URL }} + ENVIRONMENT: dev + TESTING: 0 + PORT: 8765 + - name: Monitor memory usage run: free -h - name: Test port accessibility