Update Assembly Version and Increase Worker.Extensions.DurableTask to 1.2.0 for Release #997
Workflow file for this run
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: Smoke Test - .NET on Functions V3 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main, dev ] | |
paths: | |
- 'src/**' | |
- 'test/SmokeTests/SmokeTestsV3/**' | |
pull_request: | |
branches: [ main, dev ] | |
paths: | |
- 'src/**' | |
- 'test/SmokeTests/SmokeTestsV3/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run V3 .NET Smoke Test | |
run: test/SmokeTests/e2e-test.ps1 -DockerfilePath test/SmokeTests/SmokeTestsV3/Dockerfile -HttpStartPath api/HttpStart | |
shell: pwsh |