Add integration test framework for isolated #482
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 in-proc w/ MSSQL on Functions V4 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main, dev ] | |
paths: | |
- 'src/**' | |
- 'test/SmokeTests/BackendSmokeTests/MSSQL/**' | |
- '.github/workflows/smoketest-mssql-inproc-v4.yml' | |
pull_request: | |
branches: [ main, dev ] | |
paths: | |
- 'src/**' | |
- 'test/SmokeTests/BackendSmokeTests/MSSQL/**' | |
- '.github/workflows/smoketest-mssql-inproc-v4.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
SA_PASSWORD: ${{ secrets.SA_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run V4 .NET in-proc w/ MSSQL Smoke Test | |
run: test/SmokeTests/e2e-test.ps1 -DockerfilePath test/SmokeTests/BackendSmokeTests/MSSQL/Dockerfile -HttpStartPath api/DurableFunctionsHttpStart -ContainerName MSSQLApp -SetupSQLServer | |
shell: pwsh |