Skip to content

dependabot: bump Syncfusion.Themes.Office365.WPF #524

dependabot: bump Syncfusion.Themes.Office365.WPF

dependabot: bump Syncfusion.Themes.Office365.WPF #524

Workflow file for this run

name: Build CI
on:
push:
branches:
- "**"
pull_request:
branches:
- "master"
jobs:
build:
strategy:
matrix:
configuration: [Debug]
runs-on: windows-latest
env:
Solution_Name: BetterER.sln
Test_Project: BetterER.Tests\BetterER.Test.csproj
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
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
# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test
# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Restore the application
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}