Skip to content

Add more detailed steps for skill testing (#37959) #20

Add more detailed steps for skill testing (#37959)

Add more detailed steps for skill testing (#37959) #20

Workflow file for this run

name: Test Cosmos
on:
push:
branches:
- main
- feature/*
- release/*
pull_request:
branches:
- main
- feature/*
- release/*
permissions: {}
jobs:
build:
runs-on: windows-latest
steps:
- name: Start Cosmos Emulator
run: |
Import-Module "$env:ProgramFiles\Azure Cosmos DB Emulator\PSModules\Microsoft.Azure.CosmosDB.Emulator"
Start-CosmosDbEmulator -Timeout 540 -NoUI -NoTelemetry -NoFirewall -EnablePreview
- name: Checkout
uses: actions/checkout@v6
- name: Restore
run: restore.cmd
shell: cmd
- name: Test on Cosmos
run: dotnet test test/EFCore.Cosmos.FunctionalTests/EFCore.Cosmos.FunctionalTests.csproj
shell: cmd
- name: Publish Test Results
uses: actions/upload-artifact@v7
if: always()
with:
name: test-results
path: artifacts/log/Debug/*