fix: use lower case for role when creating token #197
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |