WIP #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
- feature/* | |
- release/* | |
permissions: {} | |
jobs: | |
cosmos: | |
name: Azure Cosmos DB Emulator | |
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 360 | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Restore | |
run: restore.cmd | |
shell: cmd | |
- name: Build | |
run: build.cmd /p:Projects=${{ github.workspace }}\test\EFCore.Cosmos.FunctionalTests\EFCore.Cosmos.FunctionalTests.csproj | |
shell: cmd | |
- name: Test on Cosmos | |
run: test.cmd /p:Projects=${{ github.workspace }}\test\EFCore.Cosmos.FunctionalTests\EFCore.Cosmos.FunctionalTests.csproj | |
shell: cmd | |
- name: Publish Test Results | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: test-results-cosmos | |
path: artifacts/log/Debug/* | |
mssql: | |
name: SQL Server on Linux | |
runs-on: ubuntu-latest | |
services: | |
mssql: | |
image: mcr.microsoft.com/mssql/server | |
env: | |
SA_PASSWORD: Password12! | |
ACCEPT_EULA: Y | |
ports: | |
- 1433:1433 | |
env: | |
Test__SqlServer__DefaultConnection: Data Source=(local)\MSSQLSERVER;Initial Catalog=master;User ID=sa;Password=Password12!;Connect Timeout=60;ConnectRetryCount=0 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Restore | |
run: ./restore.sh | |
- name: Build | |
run: ./build.sh /p:Projects=${{ github.workspace }}/test/EFCore.SqlServer.FunctionalTests/EFCore.SqlServer.FunctionalTests.csproj | |
- name: Test | |
run: ./test.sh /p:Projects=${{ github.workspace }}/test/EFCore.SqlServer.FunctionalTests/EFCore.SqlServer.FunctionalTests.csproj | |
- name: Publish Test Results | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: test-results-mssql | |
path: artifacts/log/Debug/* | |