Skip to content

Use Lazy overload based on framework version #19

Use Lazy overload based on framework version

Use Lazy overload based on framework version #19

Workflow file for this run

name: Build and Test (.NET 6.0)
on: [push]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
- name: Run the Core tests
run: dotnet test $GITHUB_WORKSPACE/tests/Medidata.MAuth.CoreTests --framework net6.0
- name: Run the ASP.NET Core tests
run: dotnet test $GITHUB_WORKSPACE/tests/Medidata.MAuth.AspNetCoreTests --framework net6.0