Skip to content

Commit b84d755

Browse files
committed
feat: 7723-testing fix 12
1 parent 6bc145e commit b84d755

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/dotnet-tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,23 @@ jobs:
1919
azurite:
2020
image: mcr.microsoft.com/azure-storage/azurite
2121
options: --name azurite-storage
22+
env:
23+
AZURITE_BLOB_HOST: 0.0.0.0
24+
2225

2326
steps:
2427
- name: Checkout Repository
2528
uses: actions/checkout@v4
2629
with:
2730
submodules: 'true'
2831

29-
- name: Start Azurite with --skipApiVersionCheck
30-
run: docker exec azurite-storage azurite --silent --skipApiVersionCheck
32+
- name: Verify Azurite is Running
33+
run: docker ps --filter "name=azurite-storage"
34+
35+
- name: Apply --skipApiVersionCheck to Running Azurite
36+
run: |
37+
docker exec azurite-storage pkill -f "azurite"
38+
docker exec azurite-storage azurite --silent --skipApiVersionCheck &
3139
3240
- name: Setup .NET
3341
uses: actions/setup-dotnet@v4

0 commit comments

Comments
 (0)