Support Tags when RestartInstance #1597
Workflow file for this run
This file contains hidden or 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: Smoke Test - Python 3.7 on Functions V4 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main, dev ] | |
| paths: | |
| - 'src/**' | |
| - 'test/SmokeTests/OOProcSmokeTests/durablePy/**' | |
| pull_request: | |
| branches: [ main, dev ] | |
| paths: | |
| - 'src/**' | |
| - 'test/SmokeTests/OOProcSmokeTests/durablePy/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run V4 Python 3.7 Smoke Test | |
| run: test/SmokeTests/e2e-test.ps1 -DockerfilePath test/SmokeTests/OOProcSmokeTests/durablePy/Dockerfile -HttpStartPath api/DurableFunctionsHttpStart -ContainerName pyApp -TestWithCustomInstanceId | |
| shell: pwsh |