Skip to content

Remove toLower call when adding org claim as this will fail if the username based org has uppercase characters somewhere. #102

Remove toLower call when adding org claim as this will fail if the username based org has uppercase characters somewhere.

Remove toLower call when adding org claim as this will fail if the username based org has uppercase characters somewhere. #102

Workflow file for this run

name: Localtest PR Analysis
on:
pull_request:
paths:
- 'src/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK 6.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Install dependencies
run: dotnet restore
working-directory: 'src/'
- name: Build LocalTest
run: dotnet build --configuration Debug --no-restore
working-directory: 'src/'