v5.5.3 - Saunter nuget updated to v0.13.0 (Veracode flaw related to Newtonsoft 0.9.*) #172
This file contains hidden or 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: PR Gate | |
| on: | |
| pull_request: | |
| branches: [ master, release/* ] | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup .NET Core 3.1 | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 3.1.x | |
| - name: Setup .NET 5 | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 5.0.x | |
| - name: Setup .NET 6 | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 6.0.x | |
| - name: Setup .NET 8 | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Install dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --configuration Debug --no-restore | |
| - name: Test | |
| run: dotnet test --configuration Debug --no-build --no-restore -v normal | |
| - name: Pack | |
| run: dotnet pack --configuration Debug --no-build --no-restore -v normal |