We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90d8ac3 commit ba56950Copy full SHA for ba56950
.github/workflows/ci.yml
@@ -0,0 +1,17 @@
1
+name: .NET test with Cosmos DB Emulator
2
+on:
3
+ workflow_dispatch:
4
+jobs:
5
+ unit_tests:
6
+ name: Run .NET unit tests
7
+ runs-on: windows-latest
8
+ steps:
9
+ - name: Checkout (GitHub)
10
+ uses: actions/checkout@v4
11
+ - name: Start Azure Cosmos DB emulator
12
+ run: |
13
+ Write-Host "Launching Cosmos DB Emulator"
14
+ Import-Module "$env:ProgramFiles\Azure Cosmos DB Emulator\PSModules\Microsoft.Azure.CosmosDB.Emulator"
15
+ Start-CosmosDbEmulator
16
+ - name: Run .NET tests
17
+ run: dotnet test -graphBuild:True
0 commit comments