Skip to content

Feature/msal

Feature/msal #43

Workflow file for this run

name: Test
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.x
- name: Test
run: dotnet test --verbosity normal --logger "trx;LogFileName=test-results.trx"
- name: Test Reporter
uses: dorny/[email protected]
if: success() || failure()
with:
name: .NET Tests
path: "**/test-results.trx"
reporter: dotnet-trx