Bump Microsoft.AspNetCore.Authentication.JwtBearer from 8.0.8 to 8.0.10 #28
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
configuration: Release | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Restore dotnet tools | |
run: dotnet tool restore | |
- name: Check coding style | |
run: dotnet format --verify-no-changes | |
- name: Build | |
run: dotnet build --configuration ${{ env.configuration }} --no-restore | |
- name: Execute tests | |
run: dotnet test --configuration ${{ env.configuration }} --no-build --verbosity normal | |
- name: Run GitVersion | |
run: dotnet gitversion /output json /output buildserver | |
# Test NuGet package creation to avoid failures in the release pipeline | |
- name: Test NuGet package creation | |
run: dotnet pack ./sources/EngageLabs.MinimalApi/EngageLabs.MinimalApi.csproj --configuration ${{ env.configuration }} --no-build --property:PackageVersion=${{ env.GitVersion_MajorMinorPatch }} |