Skip to content

Commit

Permalink
add azurite step
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid authored Jun 18, 2024
1 parent 81eb770 commit 481dacd
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/validate-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,6 @@ jobs:
build:
runs-on: windows-latest

services:
azurite:
image: mcr.microsoft.com/azure-storage/azurite
ports:
- 10000:10000
- 10001:10001
- 10002:10002


steps:
- uses: actions/checkout@v3
with:
Expand All @@ -42,6 +33,11 @@ jobs:
- name: Build
run: dotnet build $solution #--configuration $config #--no-restore -p:FileVersionRevision=$GITHUB_RUN_NUMBER -p:ContinuousIntegrationBuild=true

- name: Run Azurite
run: |
docker pull mcr.microsoft.com/azure-storage/azurite
docker run -d -p 10000:10000 -p 10001:10001 -p 10002:10002 --name azurite mcr.microsoft.com/azure-storage/azurite
- name: Test DTx.Core
run: dotnet test Azure/durabletask/test/DurableTask.Core.Tests/DurableTask.Core.Tests.csproj #--configuration $config --no-build --verbosity normal

Expand Down

0 comments on commit 481dacd

Please sign in to comment.