Merge pull request #73 from Leo-Corporation/dependabot/nuget/LABS-Exp… #269
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 CI | |
on: [push] | |
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/[email protected] | |
- name: Build App | |
run: dotnet build "LABS Experiences\LABS Experiences\LABS Experiences.csproj" -c Release | |
- name: Test App | |
run: dotnet test "LABS Experiences\LABS Experiences\LABS Experiences.csproj" |