Rebased CI workflows to the latest releases. #342
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
# | |
# SPDX-FileCopyrightText: 2011-2023 EasyCoding Team | |
# | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
# | |
name: Windows CI | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'legacy' | |
pull_request: | |
branches: | |
- 'master' | |
- 'legacy' | |
jobs: | |
build: | |
name: Build project using .NET Framework | |
runs-on: windows-latest | |
steps: | |
- name: Fetching sources | |
uses: actions/checkout@v4 | |
- name: Configuring MSBuild service | |
uses: microsoft/[email protected] | |
- name: Restoring dependencies with NuGet | |
run: | | |
nuget restore srcrepair.sln | |
- name: Building project with MSBuild | |
run: | | |
msbuild /p:Configuration=Release srcrepair.sln |