Merge branch 'dev' into nytian/sc-pkg-as #2
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: Functions Scale Tests Azure Storage | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - dev | ||
| paths-ignore: [ '**.md' ] | ||
| pull_request: | ||
| branches: | ||
| - '*' | ||
| paths-ignore: [ '**.md' ] | ||
| env: | ||
| solution: WebJobs.Extensions.DurableTask.sln | ||
| config: Release | ||
| AzureWebJobsStorage: UseDevelopmentStorage=true | ||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| with: | ||
| submodules: true | ||
| - name: Setup .NET 8.0 | ||
| uses: actions/setup-dotnet@v3 | ||
| with: | ||
| dotnet-version: 8.0.x | ||
| - name: Restore dependencies | ||
| run: dotnet restore $solution | ||
| - name: Build | ||
| run: dotnet build $solution | ||
| - name: Set up Node.js (needed for Azurite) | ||
| uses: actions/setup-node@v3 | ||
| with: | ||
| node-version: '18.x' | ||
| - name: Install Azurite | ||
| run: npm install -g azurite | ||
| - name: Run Scale tests | ||
| run: azurite --silent --blobPort 10000 --queuePort 10001 --tablePort 10002 & dotnet test ./test/ScaleTests/Microsoft.Azure.WebJobs.Extensions.DurableTask.FunctionsScale.Tests.csproj --no-build --verbosity normal | ||