Skip to content

udpate with comments and add new workflow #1

udpate with comments and add new workflow

udpate with comments and add new workflow #1

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

Check failure on line 29 in .github/workflows/validate-build-scale.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/validate-build-scale.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
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