Update opentelemetry-instrumentation-aiohttp-client requirement from ~=0.49b2 to ~=0.51b0 in /code/backend #283
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Web App Deployment | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**.py" | |
- "code/backend/**" | |
- "config/**" | |
- "tests/**" | |
- "requirements.txt" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "**.py" | |
- "code/backend/**" | |
- "config/**" | |
- "tests/**" | |
- "requirements.txt" | |
jobs: | |
webapp_test: | |
uses: ./.github/workflows/_webappTestTemplate.yml | |
name: "Web App Test" | |
with: | |
python_version: "3.11" | |
webapp_directory: "./code/backend" | |
webapp_dev: | |
uses: ./.github/workflows/_webappDeployTemplate.yml | |
name: "Web App - Dev" | |
needs: [webapp_test] | |
with: | |
environment: "dev" | |
python_version: "3.11" | |
webapp_directory: "./code/backend" | |
webapp_name: "bfr-dev-app001" | |
tenant_id: "37963dd4-f4e6-40f8-a7d6-24b97919e452" | |
subscription_id: "1fdab118-1638-419a-8b12-06c9543714a0" | |
secrets: | |
CLIENT_ID: ${{ secrets.CLIENT_ID }} |