Fix broken link to contributing markdown for Github Pages #41
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
# Github workflow for Continuous Integration | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
working-directory: code | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v1 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v1 | |
- name: Restore NuGet packages | |
run: nuget restore InboxNotifier.sln | |
- name: Build solution — Debug | |
run: | | |
msbuild.exe InboxNotifier.sln /p:configuration="Debug" /p:platform="Any CPU" /m | |
- name: Build solution — Release 32 bits (x86) | |
run: | | |
msbuild.exe InboxNotifier.sln /p:configuration="Release x86" /p:platform="Any CPU" /m | |
- name: Build solution — Release 64 bits (x64) | |
run: | | |
msbuild.exe InboxNotifier.sln /p:configuration="Release x64" /p:platform="Any CPU" /m | |