[Snyk] Security upgrade Microsoft.AspNetCore.Authentication.JwtBearer from 6.0.0 to 6.0.26 #120
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: .NET build validation | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore ./ShareBook/ShareBook.sln | |
- name: Build | |
run: dotnet build ./ShareBook/ShareBook.sln --no-restore | |
- name: Test | |
run: dotnet test ./ShareBook/ShareBook.sln --no-build --verbosity normal |