Skip to content

fix: use lower case for role when creating token #197

fix: use lower case for role when creating token

fix: use lower case for role when creating token #197

Workflow file for this run

name: "Build & Test"
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
env:
CONFIGURATION: "Release"
jobs:
build:
env:
DOTNET_NOLOGO: true
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Clean
run: dotnet clean OpenTok.sln --configuration ${{ env.CONFIGURATION }} && dotnet nuget locals all --clear
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build OpenTok.sln --configuration ${{ env.CONFIGURATION }} --no-restore
- name: Test
run: dotnet test OpenTokTest/OpenTokTest.csproj --configuration ${{ env.CONFIGURATION }} --no-build