Skip to content

Bump Microsoft.IdentityModel.JsonWebTokens from 6.11.0 to 6.34.0 in /src/Common/Application #20

Bump Microsoft.IdentityModel.JsonWebTokens from 6.11.0 to 6.34.0 in /src/Common/Application

Bump Microsoft.IdentityModel.JsonWebTokens from 6.11.0 to 6.34.0 in /src/Common/Application #20

Workflow file for this run

name: .NET 5
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and Test
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET SDK 5.0.101
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.101'
- name: Install dependencies
run: dotnet restore ./CleanArchitecture.sln
- name: Build
run: dotnet build ./CleanArchitecture.sln --configuration Release --no-restore
- name: Test
run: dotnet test ./CleanArchitecture.sln