Skip to content

Bump PeyrSharp.Core from 1.10.0.2310 to 2.0.0.2311 #64

Bump PeyrSharp.Core from 1.10.0.2310 to 2.0.0.2311

Bump PeyrSharp.Core from 1.10.0.2310 to 2.0.0.2311 #64

Workflow file for this run

name: .NET CI
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
# Install the .NET workload
- name: Install .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2
- name: Build App
run: dotnet build PermaTop\PermaTop.csproj -c Release
- name: Test App
run: dotnet test PermaTop\PermaTop.csproj