Skip to content

.Net 8 Tests (123 total) #6

.Net 8 Tests (123 total)

.Net 8 Tests (123 total) #6

Workflow file for this run

name: .Net 8 Tests
on:
workflow_dispatch
# push:
# branches: [ "master" ]
# pull_request:
# branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
env:
APPLICATIONDBCONTEXTCONNECTION: ${{ secrets.APPLICATIONDBCONTEXTCONNECTION }}
COSMOSIDENTITYDBNAME: ${{ secrets.COSMOSIDENTITYDBNAME }}
run: dotnet test AspNetCore.Identity.CosmosDb.Tests.Net7/AspNetCore.Identity.CosmosDb.Tests.Net.csproj --no-build --verbosity normal