This repository has been archived by the owner on Jul 21, 2024. It is now read-only.
Update license copyright year(s) #367
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 Framework | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout Code | |
# Install the .NET workload | |
- name: Install .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v1.0.2 | |
- name: Build App | |
run: dotnet build "LeoCorpLibrary.sln" -c Release | |
- name: Test App | |
run: dotnet test "LeoCorpLibrary.sln" |