Skip to content
This repository has been archived by the owner on Feb 3, 2024. It is now read-only.

Chore(deps): Bump Newtonsoft.Json from 12.0.3 to 13.0.1 in /HunterPie #24

Chore(deps): Bump Newtonsoft.Json from 12.0.3 to 13.0.1 in /HunterPie

Chore(deps): Bump Newtonsoft.Json from 12.0.3 to 13.0.1 in /HunterPie #24

Workflow file for this run

name: Pull Request Check
on:
pull_request:
branches:
- master
- development
defaults:
run:
shell: bash
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
- name: Restore packages
shell: pwsh
run: msbuild -m /t:Restore
- name: Build apps
shell: pwsh
run: msbuild -m /p:Configuration=Debug
- name: Run Tests
shell: pwsh
run: msbuild -m /t:test HunterPie.Tests/
# Probably want to publish test results next... but how?