Bump Newtonsoft.Json from 12.0.2 to 13.0.1 in /Alexa.NET in the nuget group #23
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: PR Build | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
build: | |
name: PR build and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
# Run the tests, ideally should stop here if a fail and also publish results as artifacts | |
- name: Test | |
uses: timheuer/dotnet-tests-report@master | |
with: | |
project_path: Alexa.NET.Tests/Alexa.NET.Tests.csproj | |
report_name: alexa_net_tests | |
report_title: Alexa.NET Tests | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
set_check_status_from_test_outcome: true |