Address PR feedback #414
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: .NET Core | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
continue-on-error: true | |
name: Abstractions GitHub Action Test | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.1.7 | |
- name: Setup .NET 8.0.x | |
uses: actions/setup-dotnet@v1.7.2 | |
with: | |
dotnet-version: 8.0.x | |
# Run the tests | |
- name: Build with .NET 8.0.x | |
run: dotnet test -v m --configuration Release Microsoft.Identity.Abstractions.sln | |
# Run the tests | |
- name: Pack | |
run: dotnet pack --configuration Release --no-restore --no-build -v m Microsoft.Identity.Abstractions.sln |